Files
Flappy-Bird-AI-Driven-Result/Assets/Scripts/Core/IPoolable.cs
T
2026-03-16 14:38:46 +02:00

9 lines
127 B
C#

namespace FlappyBird.Core
{
public interface IPoolable
{
void OnSpawned();
void OnDespawned();
}
}