mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
5164ef1a54
* Refactor MxOmni/LegoOmni headers to use forward declarations * Fixes * Fix build * Fix deps
19 lines
334 B
C++
19 lines
334 B
C++
#include "skateboard.h"
|
|
|
|
#include "mxomni.h"
|
|
#include "mxnotificationmanager.h"
|
|
|
|
#include "decomp.h"
|
|
|
|
DECOMP_SIZE_ASSERT(SkateBoard, 0x168);
|
|
|
|
// OFFSET: LEGO1 0x1000fd40
|
|
SkateBoard::SkateBoard()
|
|
{
|
|
this->m_unk160 = 0;
|
|
this->m_unk13c = 15.0;
|
|
this->m_unk150 = 3.5;
|
|
this->m_unk148 = 1;
|
|
|
|
NotificationManager()->Register(this);
|
|
}
|