2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-12 16:06:09 +00:00

ScriptLoader support imps

This commit is contained in:
Jack Andersen
2016-04-17 19:33:23 -10:00
parent 48e8de05c5
commit c614d2d2d1
12 changed files with 366 additions and 39 deletions

View File

@@ -6,18 +6,25 @@ namespace urde
class CGrappleParameters
{
float x0_;
float x4_;
float x8_;
float xc_;
float x10_;
float x14_;
float x18_;
float x1c_;
float x20_;
float x24_;
float x28_;
bool x2c_;
float x0_a;
float x4_b;
float x8_c;
float xc_d;
float x10_e;
float x14_f;
float x18_g;
float x1c_h;
float x20_i;
float x24_j;
float x28_k;
bool x2c_l;
public:
CGrappleParameters(float a, float b, float c, float d,
float e, float f, float g, float h,
float i, float j, float k, bool l)
: x0_a(a), x4_b(b), x8_c(c), xc_d(d),
x10_e(e), x14_f(f), x18_g(g), x1c_h(h),
x20_i(i), x24_j(j), x28_k(k), x2c_l(l) {}
};
}