Renamed some functions

- Renamed Begin3dMode() --> BeginMode3D()
- Renamed Begin2dMode() --> BeginMode2D()
- Renamed End3dMode() --> EndMode3D()
- Renamed End2dMode() --> EndMode2D()
This commit is contained in:
Ray San 2018-05-04 16:54:05 +02:00
parent 6324697ffd
commit 6045062a05
27 changed files with 60 additions and 60 deletions

View file

@ -56,11 +56,11 @@ int main()
ClearBackground(RAYWHITE);
Begin3dMode(camera);
BeginMode3D(camera);
DrawModel(model, mapPosition, 1.0f, WHITE);
End3dMode();
EndMode3D();
DrawTextureEx(cubicmap, (Vector2){ screenWidth - cubicmap.width*4 - 20, 20 }, 0.0f, 4.0f, WHITE);
DrawRectangleLines(screenWidth - cubicmap.width*4 - 20, 20, cubicmap.width*4, cubicmap.height*4, GREEN);