Added: Seabed model/code.

This commit is contained in:
Foxar
2020-12-08 16:48:43 +01:00
parent 220caba84a
commit f4421b659d
2 changed files with 15 additions and 1 deletions
+7 -1
View File
@@ -36,13 +36,19 @@ public:
static float engineFPS;
private:
/*DO NOT TOUCH ORDER OF DECLARATION!
GCC BUG CAUSES RENDERING TO FAIL IN ANY OTHER ORDER OF DECLARATION!*/
Mesh seabed;
Mesh island;
Mesh skybox;
LightBulb bulb;
Player player;
Camera camera;
Mesh island, skybox, water, waterbox;
Collectible *oysters;
TextureRepository *texRepo;
Sprite waterOverlay;
Mesh water;
Mesh waterbox;
};
#endif