/Samples/SimpleGameExample/Program.cs

# · C# · 19 lines · 11 code · 1 blank · 7 comment · 0 complexity · 4bb5d0761ce8d6d9799fba4ed04d2022 MD5 · raw file

  1. using Delta.Engine;
  2. namespace SimpleGameExample
  3. {
  4. /// <summary>
  5. /// Program class, just provides a Main entry point.
  6. /// </summary>
  7. static class Program
  8. {
  9. /// <summary>
  10. /// The entry point for the application, will just start the Game class!
  11. /// </summary>
  12. static void Main()
  13. {
  14. // Starting a game is as easy as this :)
  15. Application.Start(new Game());
  16. }
  17. }
  18. }