17 lines
434 B
C#
17 lines
434 B
C#
using Decimation.Core.Items;
|
|
|
|
namespace Decimation.Items.Placeable
|
|
{
|
|
internal class DenziumWall : DecimationPlaceableItem
|
|
{
|
|
protected override string ItemName => "Denzium Wall";
|
|
protected override int Tile => -1;
|
|
|
|
protected override void InitPlaceable()
|
|
{
|
|
width = 32;
|
|
height = 32;
|
|
this.item.createWall = this.mod.WallType("DenziumWall");
|
|
}
|
|
}
|
|
} |