9 lines
127 B
C#
9 lines
127 B
C#
namespace FlappyBird.Core
|
|
{
|
|
public interface IPoolable
|
|
{
|
|
void OnSpawned();
|
|
void OnDespawned();
|
|
}
|
|
}
|