- Added support for animated projectiles - Refactoring - Removed useless fields - Fixed swords not dealing damages - Added Hour Hand (from Evie's PR)
15 lines
334 B
C#
15 lines
334 B
C#
namespace Decimation.Lib.Items
|
|
{
|
|
public abstract class DecimationAccessory : DecimationItem
|
|
{
|
|
protected abstract void InitAccessory();
|
|
|
|
protected sealed override void Init()
|
|
{
|
|
this.item.accessory = true;
|
|
this.item.maxStack = 1;
|
|
|
|
InitAccessory();
|
|
}
|
|
}
|
|
} |