This commit is contained in:
2026-04-25 23:33:11 +02:00
commit 324a5b0aae
84 changed files with 23020 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
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;
}
}