Update examples and remove .exe

This commit is contained in:
raysan5
2014-09-16 11:30:25 +02:00
parent c56ef738ed
commit 01651af08a
23 changed files with 7 additions and 7 deletions

View File

@ -27,7 +27,7 @@ int main()
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
Texture2D texture = LoadTexture("resources/catwhite.png");
Texture2D texture = LoadTexture("resources/catsham.png");
Model cat = LoadModel("resources/cat.obj");
SetModelTexture(&cat, texture); // Link texture to model
//--------------------------------------------------------------------------------------