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

13 lines
180 B
C#

using Terraria.ModLoader;
namespace Decimation.Core
{
public interface IDecimationPlayer
{
bool HasLavaCharm { get; }
bool HasShield { get; }
}
}