| 123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Reflection;
- using System.Linq;
- using AtomicEngine;
- using AtomicBlaster;
- namespace AtomicPlayer
- {
- public class Program
- {
- public static void Main(string[] args)
- {
- Application.Run<GameRoot>(args);
- }
- }
- }
|