mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-09-09 03:01:41 -04:00
12 lines
238 B
C#
12 lines
238 B
C#
namespace Raylib_cs
|
|
{
|
|
/// <summary>Camera system modes</summary>
|
|
public enum CameraMode
|
|
{
|
|
CAMERA_CUSTOM = 0,
|
|
CAMERA_FREE,
|
|
CAMERA_ORBITAL,
|
|
CAMERA_FIRST_PERSON,
|
|
CAMERA_THIRD_PERSON
|
|
}
|
|
} |