Jypeli  5
The simple game programming library
Destroyable.cs
Siirry tämän tiedoston dokumentaatioon.
1 using System;
2 
3 namespace Jypeli
4 {
8  public interface Destroyable
9  {
10  bool IsDestroyed { get; }
11  event Action Destroyed;
12  void Destroy();
13  }
14 
18  public interface DelayedDestroyable : Destroyable
19  {
20  bool IsDestroying { get; }
21  event Action Destroying;
22  }
23 }
Rajapinta olioille, joiden tuhoaminen kestää seuraavaan päivitykseen.
Definition: Destroyable.cs:18
Rajapinta olioille, jotka ovat tuhottavissa.
Definition: Destroyable.cs:8