Program.cs 336 B

12345678910111213141516
  1. using System;
  2. using System.Windows.Forms;
  3. using SpriteEffects; // Add this to reference the shared Core namespace
  4. namespace SpriteEffects.Platform.Windows
  5. {
  6. static class Program
  7. {
  8. [STAThread]
  9. static void Main()
  10. {
  11. var game = new SpriteEffectsGame();
  12. game.Run();
  13. }
  14. }
  15. }