/Samples/SimpleGameExample/Program.cs
# · C# · 19 lines · 11 code · 1 blank · 7 comment · 0 complexity · 4bb5d0761ce8d6d9799fba4ed04d2022 MD5 · raw file
- using Delta.Engine;
-
- namespace SimpleGameExample
- {
- /// <summary>
- /// Program class, just provides a Main entry point.
- /// </summary>
- static class Program
- {
- /// <summary>
- /// The entry point for the application, will just start the Game class!
- /// </summary>
- static void Main()
- {
- // Starting a game is as easy as this :)
- Application.Start(new Game());
- }
- }
- }