metaforce/Runtime/World/CGrappleParameters.hpp

39 lines
692 B
C++
Raw Permalink Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-04-17 18:58:13 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2018-12-07 21:30:43 -08:00
class CGrappleParameters {
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_lockSwingTurn;
2016-04-17 18:58:13 -07:00
2016-04-17 22:33:23 -07:00
public:
2018-12-07 21:30:43 -08:00
CGrappleParameters(float a, float b, float c, float d, float e, float f, float g, float h, float i, float j, float k,
bool lockSwingTurn)
: 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_lockSwingTurn(lockSwingTurn) {}
2017-07-23 16:45:04 -07:00
2018-12-07 21:30:43 -08:00
bool GetLockSwingTurn() const { return x2c_lockSwingTurn; }
2016-04-17 18:58:13 -07:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce