13 lines
180 B
C#
13 lines
180 B
C#
using Terraria.ModLoader;
|
|
|
|
namespace Decimation.Core
|
|
{
|
|
public interface IDecimationPlayer
|
|
{
|
|
|
|
bool HasLavaCharm { get; }
|
|
bool HasShield { get; }
|
|
|
|
}
|
|
}
|