Updated several files while porting examples to web

This commit is contained in:
raysan5 2020-12-24 13:51:24 +01:00
parent bab1b9c1c5
commit b68e522ffc
9 changed files with 2110 additions and 2368 deletions

View file

@ -68,6 +68,11 @@ typedef enum {
extern "C" { // Prevents name mangling of functions
#endif
//----------------------------------------------------------------------------------
// Global Variables Definition
//----------------------------------------------------------------------------------
int lightsCount = 0; // Current amount of created lights
//----------------------------------------------------------------------------------
// Module Functions Declaration
//----------------------------------------------------------------------------------
@ -104,7 +109,7 @@ void UpdateLightValues(Shader shader, Light light); // Send light proper
//----------------------------------------------------------------------------------
// Global Variables Definition
//----------------------------------------------------------------------------------
static int lightsCount = 0; // Current amount of created lights
// ...
//----------------------------------------------------------------------------------
// Module specific Functions Declaration