1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 22:39:53 +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 ld prec = 1;
inline bool shift_to_ctr = false;
struct object { struct object {
hpcshape sh; hpcshape sh;
basic_textureinfo tv; basic_textureinfo tv;
@ -272,6 +274,7 @@ namespace objmodels {
struct model_data : gi_extension { struct model_data : gi_extension {
ld prec_used; ld prec_used;
vector<shared_ptr<object>> objs; vector<shared_ptr<object>> objs;
vector<int> objindex;
void render(const shiftmatrix& V); void render(const shiftmatrix& V);
}; };