Example #1
0
 protected virtual void _onMonsterDespawn()
 {
     OnMonsterDespawn?.Invoke(this, EventArgs.Empty);
 }
Example #2
0
        protected virtual void _onMonsterDespawn()
        {
            MonsterEventArgs args = new MonsterEventArgs(this);

            OnMonsterDespawn?.Invoke(this, args);
        }