Working MVP code for Valentines

This commit is contained in:
Michal Pikulski
2025-12-04 15:10:20 +01:00
parent 38e4cdcf88
commit 6d4080438d
44 changed files with 2731 additions and 294 deletions

View File

@@ -0,0 +1,14 @@
namespace Minigames.Airplane.Data
{
/// <summary>
/// Camera states for the airplane minigame
/// </summary>
public enum AirplaneCameraState
{
Intro, // Intro sequence camera
NextPerson, // Camera focusing on the next person
Aiming, // Camera for aiming the airplane
Flight // Camera following the airplane in flight
}
}