コード例 #1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (LaserGame game = new LaserGame())
     {
         game.Run();
     }
 }
コード例 #2
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (LaserGame game = new LaserGame())
     {
         game.Run();
     }
 }
コード例 #3
0
        public TileMapManagerExtension(LaserGame game)
            : base(game, TileSheetPath)
        {
            worldObjects = new List <InWorldObject>();

            worldObjects.Add(new Townsman(0, 0));
            worldObjects.Add(new Townsman(1, 0));
            worldObjects.Add(new Townsman(1, 1));
        }
コード例 #4
0
 public TileMapComponent(LaserGame game, TileMapManagerExtension map)
     : base(game)
 {
     this.mapManager = map;
 }
コード例 #5
0
 public TileMapComponent(LaserGame game, TileMapManagerExtension map)
     : base(game)
 {
     this.mapManager = map;
 }