mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-09-09 03:01:41 -04:00
9 lines
173 B
C#
9 lines
173 B
C#
namespace Raylib_cs
|
|
{
|
|
/// <summary>Camera projection</summary>
|
|
public enum CameraProjection
|
|
{
|
|
CAMERA_PERSPECTIVE = 0,
|
|
CAMERA_ORTHOGRAPHIC
|
|
}
|
|
} |