コード例 #1
0
ファイル: DirtTile.cs プロジェクト: Almightie/SpaceFed
 public DirtTile(BaseTile tile) : base(tile)
 {
     _group       = TileGroup.Ground;
     _type        = TileType.Dirt;
     _description = "Dirty Ground";
 }
コード例 #2
0
ファイル: WoodenWallTile.cs プロジェクト: Almightie/SpaceFed
 public WoodenWallTile(BaseTile tile) : base(tile)
 {
     _group       = TileGroup.Wall;
     _type        = TileType.Wood;
     _description = "Wooden Wall";
 }
コード例 #3
0
ファイル: TileDecorator.cs プロジェクト: Almightie/SpaceFed
 protected TileDecorator(BaseTile tile)
 {
     _tile = tile;
 }