Program.cs 284 B

12345678910111213141516
  1. namespace SpriteEffects
  2. {
  3. static class Program
  4. {
  5. /// <summary>
  6. /// The main entry point for the application.
  7. /// </summary>
  8. static void Main (string[] args)
  9. {
  10. using (SpriteEffectsGame game = new SpriteEffectsGame ()) {
  11. game.Run ();
  12. }
  13. }
  14. }
  15. }