11 lines
253 B
C#
11 lines
253 B
C#
using RPGCore.Core.Objects;
|
|
using RPGCore.ObjectModules.EventObjectModule;
|
|
|
|
namespace IntoTheAbyss.Events
|
|
{
|
|
public class ReviveEvent : BasePreventableEvent<BaseObject>
|
|
{
|
|
public BaseObject target;
|
|
public int health = 1;
|
|
}
|
|
} |