PageRenderTime 53ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/Samples/Pong/Program.cs

#
C# | 22 lines | 14 code | 2 blank | 6 comment | 0 complexity | a555fc884476dd3d4ba658832c54d7e9 MD5 | raw file
Possible License(s): Apache-2.0
  1. using System;
  2. using Delta.Engine;
  3. namespace Pong
  4. {
  5. /// <summary>
  6. /// Program
  7. /// </summary>
  8. public static class Program
  9. {
  10. #region Main
  11. /// <summary>
  12. /// The main entry point for the application.
  13. /// </summary>
  14. public static void Main()
  15. {
  16. Application.Start(new PongGame());
  17. }
  18. #endregion
  19. }
  20. }