This commit is contained in:
2026-04-25 23:33:11 +02:00
commit 324a5b0aae
84 changed files with 23020 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
using RPGCore.Core.Objects;
using RPGCore.ObjectModules.EventObjectModule;
namespace IntoTheAbyss.Events
{
public class ReviveEvent : BasePreventableEvent<BaseObject>
{
public BaseObject target;
public int health = 1;
}
}