Watch
2
0
Fork
You've already forked raylib-cs
0

update enum/color names to match c# naming convention

This commit is contained in:
danil 2024-01-14 12:54:02 +02:00
commit 05facaca81
123 changed files with 1822 additions and 1821 deletions

View file

@ -8,11 +8,11 @@ namespace Raylib_cs;
/// </summary>
public enum CameraMode
{
CAMERA_CUSTOM = 0,
CAMERA_FREE,
CAMERA_ORBITAL,
CAMERA_FIRST_PERSON,
CAMERA_THIRD_PERSON
Custom = 0,
Free,
Orbital,
FirstPerson,
ThirdPerson
}
/// <summary>
@ -20,8 +20,8 @@ public enum CameraMode
/// </summary>
public enum CameraProjection
{
CAMERA_PERSPECTIVE = 0,
CAMERA_ORTHOGRAPHIC
Perspective = 0,
Orthographic
}
/// <summary>