mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-13 14:58:15 +00:00
Use typedef rather than #define in order to avoid issues in application code
This commit is contained in:
@@ -278,7 +278,7 @@ typedef struct Camera3D {
|
||||
int type; // Camera type, defines projection type: CAMERA_PERSPECTIVE or CAMERA_ORTHOGRAPHIC
|
||||
} Camera3D;
|
||||
|
||||
#define Camera Camera3D // Camera type fallback, defaults to Camera3D
|
||||
typedef Camera3D Camera; // Camera type fallback, defaults to Camera3D
|
||||
|
||||
// Camera2D type, defines a 2d camera
|
||||
typedef struct Camera2D {
|
||||
|
Reference in New Issue
Block a user