gi_extensions

This commit is contained in:
Zeno Rogue 2021-03-31 10:30:03 +02:00
parent 7f26be2531
commit d3bb52749f
1 changed files with 7 additions and 0 deletions

View File

@ -93,6 +93,11 @@ struct basic_textureinfo {
vector<glvertex> colors;
};
/** additional modules can add extra shapes etc. */
struct gi_extension {
~gi_extension() {}
};
/** basic geometry parameters */
struct geometry_information {
@ -460,6 +465,8 @@ hpcshape
int timestamp;
hpcshape& generate_pipe(ld length, ld width);
map<string, unique_ptr<gi_extension>> ext;
};
#endif