Ejemplo n.º 1
0
        protected virtual void _onTargetted()
        {
            MonsterEventArgs args = new MonsterEventArgs(this);

            OnTargetted?.Invoke(this, args);
        }
Ejemplo n.º 2
0
        protected virtual void _onMonsterDeath()
        {
            MonsterEventArgs args = new MonsterEventArgs(this);

            OnMonsterDeath?.Invoke(this, args);
        }
Ejemplo n.º 3
0
        protected virtual void _onHPUpdate()
        {
            MonsterEventArgs args = new MonsterEventArgs(this);

            OnHPUpdate?.Invoke(this, args);
        }