ITileSpawnEventReceiver.cs 156 B

12345678
  1. namespace DunGen.Pooling
  2. {
  3. public interface ITileSpawnEventReceiver
  4. {
  5. void OnTileSpawned(Tile tile);
  6. void OnTileDespawned(Tile tile);
  7. }
  8. }