1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-24 05:17:17 +00:00

rogueviz:: missing variables from objmodels

This commit is contained in:
Zeno Rogue 2022-03-20 09:52:32 +01:00
parent 3fe834e726
commit 5084764275

View File

@ -263,6 +263,8 @@ namespace objmodels {
inline ld prec = 1;
inline bool shift_to_ctr = false;
struct object {
hpcshape sh;
basic_textureinfo tv;
@ -272,6 +274,7 @@ namespace objmodels {
struct model_data : gi_extension {
ld prec_used;
vector<shared_ptr<object>> objs;
vector<int> objindex;
void render(const shiftmatrix& V);
};