mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-14 12:24:16 -04:00
A couple demo matches
This commit is contained in:
@@ -20,12 +20,11 @@ public:
|
||||
mEnd = end;
|
||||
}
|
||||
void SetStartEnd(const Vec& start, const Vec& end) {
|
||||
mStart = start;
|
||||
mEnd = end;
|
||||
mStart.set(start);
|
||||
mEnd.set(end);
|
||||
}
|
||||
void set(const Vec& start, const Vec& end) {
|
||||
mStart = start;
|
||||
mEnd = end;
|
||||
SetStartEnd(start, end);
|
||||
}
|
||||
void CalcPos(Vec* out, f32 scale) const {
|
||||
Vec tmp;
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
#include "f_op/f_op_actor.h"
|
||||
#include "d/d_cc_d.h"
|
||||
#include "SSystem/SComponent/c_phase.h"
|
||||
#include "f_op/f_op_actor_mng.h"
|
||||
|
||||
class dBgW;
|
||||
|
||||
@@ -49,6 +50,8 @@ public:
|
||||
/* 0x1420 */ u32 mWindTagId;
|
||||
};
|
||||
|
||||
STATIC_ASSERT(sizeof(daWindMill_c) == 0x1424);
|
||||
namespace daWindMill_prm {
|
||||
inline u8 getType(daWindMill_c* i_this) { return fopAcM_GetParam(i_this) & 0xF; }
|
||||
};
|
||||
|
||||
#endif /* D_A_WINDMILL_H */
|
||||
|
||||
Reference in New Issue
Block a user