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

18 lines
442 B
C#

using Microsoft.Xna.Framework;
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
namespace Decimation.Walls
{
internal class DenziumWall : ModWall
{
public override void SetDefaults()
{
Main.wallHouse[this.Type] = true;
dustType = DustID.Stone;
drop = ModContent.ItemType<Items.Placeable.DenziumWall>();
AddMapEntry(new Color(5, 7, 22));
}
}
}