mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 05:19:43 +00:00
60acd49729
CThug TODOs CSuperOck TODOs Spool TODOs CPlayer TODOs SpClone TODOs Simby TODOs CScorpion TODOs Redbook TODOs Baddy TODOs M3dColij TODOs M3dUtils TODOs CLizMan TODOs FontTools TODOs AI TODOs Bit TODOs BlackCat TODOs Camera TODOs Carnage TODOs DCShell TODOs DocOck TODOs Effects TODOs Jonah TODOs ManipOb TODOs Mess TODOs Mysterio TODOs Panel TODOs Platform TODOs Ps2Funcs TODOs LowSfx TODOs M3D TODOs Pad TODOs PShell TODOs Reloc TODOs
39 lines
754 B
C++
39 lines
754 B
C++
#include "spclone.h"
|
|
#include "validate.h"
|
|
|
|
|
|
// @Ok
|
|
void CSpClone::Shouldnt_DoPhysics_Be_Virtual(void)
|
|
{
|
|
this->DoPhysics();
|
|
}
|
|
|
|
// @BIGTODO
|
|
void CSpClone::DoPhysics(void)
|
|
{}
|
|
|
|
// @BIGTODO
|
|
__inline int* CSpClone::KillCommandBlock(int*)
|
|
{
|
|
return (int*)0x02062024;
|
|
}
|
|
|
|
// @NotOk
|
|
// Revisit
|
|
void CSpClone::KillAllCommandBlocks(void)
|
|
{
|
|
for (int* cur = reinterpret_cast<int*>(this->field_34C); cur; cur = this->KillCommandBlock(cur));
|
|
this->field_34C = 0;
|
|
}
|
|
|
|
void validate_CSpClone(void){
|
|
VALIDATE_SIZE(CSpClone, 0x350);
|
|
|
|
VALIDATE(CSpClone, field_328, 0x328);
|
|
VALIDATE(CSpClone, field_32C, 0x32C);
|
|
VALIDATE(CSpClone, field_330, 0x330);
|
|
VALIDATE(CSpClone, field_334, 0x334);
|
|
VALIDATE(CSpClone, field_338, 0x338);
|
|
VALIDATE(CSpClone, field_34C, 0x34C);
|
|
}
|