20 lines
446 B
C#
20 lines
446 B
C#
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
|
|
}
|
|
}
|
|
|