| 1195 | } |
| 1196 | |
| 1197 | struct struct1 |
| 1198 | { |
| 1199 | struct1() : x(0.0f), y(0.0f), width(0.0f), height(0.0f) {} |
| 1200 | struct1(float X, float Y, float W, float H) : x(X), y(Y), width(W), height(H) {} |
| 1201 | float x, y, width, height; |
| 1202 | }; |
| 1203 | |
| 1204 | DECLARE_REFLECTION_STRUCT(struct1); |
| 1205 |