12 lines
285 B
C#
12 lines
285 B
C#
using RPGCore.Core.Objects;
|
|
using RPGCore.ObjectModules.EventObjectModule;
|
|
|
|
namespace IntoTheAbyss.Events
|
|
{
|
|
public class DamageEvent : BasePreventableEvent<BaseObject>
|
|
{
|
|
public BaseObject target;
|
|
public BaseObject attacker;
|
|
public int damage;
|
|
}
|
|
} |