Review examples and added new ones

This commit is contained in:
raysan5 2016-11-18 14:05:49 +01:00
parent 6b072e696d
commit 0603e59cae
9 changed files with 158 additions and 11 deletions

View file

@ -23,7 +23,7 @@ int main()
InitWindow(screenWidth, screenHeight, "raylib [core] example - drop files");
int count = 0;
char **droppedFiles;
char **droppedFiles = { 0 };
SetTargetFPS(60);
//--------------------------------------------------------------------------------------