Update Project

This commit is contained in:
2026-03-20 13:04:43 +02:00
parent 9b587e6cba
commit beae2dea89
2295 changed files with 251259 additions and 33 deletions
@@ -0,0 +1,20 @@
namespace FlappyBird.Gameplay.Pipes
{
/// <summary>
/// Contract for the pipe-pair pool service.
/// </summary>
public interface IPipePool
{
/// <summary>
/// Pre-warms the pool. Must be called after the container is fully built
/// (i.e. from IInitializable.Initialize) to avoid circular dependency.
/// </summary>
void Initialize();
/// <summary>Returns a PipeView from the pool, expanding it if necessary.</summary>
PipeView Get();
/// <summary>Returns a PipeView back to the pool.</summary>
void Return(PipeView pipe);
}
}