Exemplo n.º 1
0
 public void Cancel()
 {
     Movements.Cancel();
     Interactives.CancelUse();
     Gathers.CancelGather();
     Teleportables.Cancel();
 }
Exemplo n.º 2
0
        protected virtual void Dispose(bool disposing)
        {
            if (_disposedValue)
            {
                return;
            }

            if (disposing)
            {
                Movements.Dispose();
                Interactives.Dispose();
                Gathers.Dispose();
                Teleportables.Dispose();
            }

            Movements     = null;
            Interactives  = null;
            Gathers       = null;
            Teleportables = null;

            _disposedValue = true;
        }
Exemplo n.º 3
0
 public void Clear()
 {
     Movements.Clear();
     Interactives.Clear();
     Gathers.Clear();
 }