Decimation_Mod/Core/DecimationModPlayer.cs
2020-03-03 21:17:42 -05:00

13 lines
260 B
C#

using Terraria.ModLoader;
namespace Decimation.Core
{
public abstract class DecimationModPlayer : ModPlayer, IDecimationPlayer
{
public abstract bool HasLavaCharm { get; set; }
public abstract bool HasShield { get; set; }
}
}