- Added support for animated projectiles - Refactoring - Removed useless fields - Fixed swords not dealing damages - Added Hour Hand (from Evie's PR)
13 lines
179 B
C#
13 lines
179 B
C#
using Terraria.ModLoader;
|
|
|
|
namespace Decimation.Lib
|
|
{
|
|
public interface IDecimationPlayer
|
|
{
|
|
|
|
bool HasLavaCharm { get; }
|
|
bool HasShield { get; }
|
|
|
|
}
|
|
}
|