/Samples/Breakout/Program.cs
C# | 23 lines | 17 code | 2 blank | 4 comment | 0 complexity | a5f48ee070a8966a5aaaf6e7781b1447 MD5 | raw file
Possible License(s): Apache-2.0
- using DeltaEngine.Core;
- using DeltaEngine.Platforms;
-
- namespace Breakout
- {
- /// <summary>
- /// Simple breakout game with more bricks to destroy each level you advance.
- /// </summary>
- public class Program : App
- {
- //ncrunch: no coverage start
- public Program()
- {
- Resolve<Settings>().UpdatesPerSecond = 60;
- new Game(Resolve<Window>());
- }
-
- public static void Main()
- {
- new Program().Run();
- }
- }
- }