- Added support for animated projectiles - Refactoring - Removed useless fields - Fixed swords not dealing damages - Added Hour Hand (from Evie's PR)
14 lines
354 B
C#
14 lines
354 B
C#
using System.Collections.Generic;
|
|
using Decimation.Lib.Items;
|
|
using Decimation.Lib.Util;
|
|
using Terraria.ModLoader;
|
|
|
|
namespace Decimation.Lib
|
|
{
|
|
public abstract class DecimationModPlayer : ModPlayer, IDecimationPlayer
|
|
{
|
|
public abstract bool HasLavaCharm { get; set; }
|
|
public abstract bool HasShield { get; set; }
|
|
|
|
}
|
|
} |