1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-05 11:57:58 +00:00

Removed floorshape::side, it will be simpler to always use gpside. The old gpside is now called side.

This commit is contained in:
Zeno Rogue
2025-03-17 00:08:02 +01:00
parent ec57120ae1
commit efd1a18104
5 changed files with 44 additions and 68 deletions

View File

@@ -94,8 +94,8 @@ struct floorshape {
int fstrength; // frame strength in 3D
PPR prio;
vector<hpcshape> b, shadow, cone[2];
sidearray<vector<hpcshape>> side, levels;
sidearray<vector<vector<hpcshape>>> gpside;
sidearray<vector<hpcshape>> levels;
sidearray<vector<vector<hpcshape>>> side;
floorshape() { prio = PPR::FLOOR; pstrength = fstrength = 10; }
};