Working item switcher

This commit is contained in:
Michal Pikulski
2025-12-15 00:05:35 +01:00
parent a78085adee
commit 8995dd1949
24 changed files with 2046 additions and 57 deletions

View File

@@ -0,0 +1,19 @@
namespace Minigames.TrashMaze.Data
{
/// <summary>
/// Camera states for Trash Maze minigame
/// </summary>
public enum TrashMazeCameraState
{
/// <summary>
/// Main gameplay camera following Trafalgar around the level
/// </summary>
Gameplay,
/// <summary>
/// Maze camera following Pulver when exploring the maze alone
/// </summary>
Maze
}
}