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

Finish CActorContraption

This commit is contained in:
2017-05-20 00:41:49 -07:00
parent c8d09f3de7
commit 9c32213790
9 changed files with 99 additions and 43 deletions

View File

@@ -0,0 +1,17 @@
#include "Weapon/CFlameInfo.hpp"
namespace urde
{
CFlameInfo::CFlameInfo(s32 w1, s32 w2, ResId flameFxId, s32 w3, float f1, float f2, float f3)
: x0_(w1)
, x4_(w2)
, x8_flameFxId(flameFxId)
, xc_(w3)
, x10_(f1)
, x18_(f2)
, x1c_(f3)
{
}
}