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,16 @@
namespace FlappyBird.Gameplay.Bird
{
/// <summary>
/// Contract for the bird's physics and rotation logic.
/// Implementations must NOT be MonoBehaviours.
/// </summary>
public interface IBirdController
{
/// <summary>Called once per frame to update rotation based on current velocity.</summary>
void Tick();
/// <summary>Applies a configurable upward force impulse to the bird.</summary>
void Jump();
}
}