/Samples/Pong/Program.cs
# · C# · 22 lines · 14 code · 2 blank · 6 comment · 0 complexity · a555fc884476dd3d4ba658832c54d7e9 MD5 · raw file
- using System;
- using Delta.Engine;
-
- namespace Pong
- {
- /// <summary>
- /// Program
- /// </summary>
- public static class Program
- {
- #region Main
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- public static void Main()
- {
- Application.Start(new PongGame());
- }
- #endregion
- }
- }