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

17 lines
471 B
C#

using Decimation.Core.Items;
using Terraria.ModLoader;
namespace Decimation.Items.Placeable.ShrineoftheMoltenOne
{
internal class ShrineAltar : DecimationPlaceableItem
{
protected override string ItemName => "Shrine Altar";
protected override int Tile => ModContent.TileType<Tiles.ShrineoftheMoltenOne.ShrineAltar>();
protected override void InitPlaceable()
{
width = 66;
height = 32;
}
}
}