Decimation_Mod/Items/Placeable/DenziumWall.cs
2020-03-03 21:17:42 -05:00

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");
}
}
}