mirror of https://github.com/raysan5/raylib
Fixes for C++
This commit is contained in:
parent
b926765ce0
commit
ab12193f10
|
@ -178,8 +178,10 @@
|
|||
// Types and Structures Definition
|
||||
//----------------------------------------------------------------------------------
|
||||
|
||||
#ifndef __cplusplus
|
||||
// Boolean type
|
||||
typedef enum { false, true } bool;
|
||||
#endif
|
||||
|
||||
// byte type
|
||||
typedef unsigned char byte;
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
*
|
||||
**********************************************************************************************/
|
||||
|
||||
#include "raylib.h"
|
||||
#include "utils.h"
|
||||
|
||||
#if defined(PLATFORM_ANDROID)
|
||||
|
|
Loading…
Reference in New Issue