mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 21:39:48 +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
31 lines
462 B
C++
31 lines
462 B
C++
#include "platform.h"
|
|
#include "validate.h"
|
|
|
|
// @Ok
|
|
void CPlatform::Shouldnt_DoPhysics_Be_Virtual(void)
|
|
{
|
|
this->DoPhysics();
|
|
}
|
|
|
|
// @BIGTODO
|
|
void CPlatform::DoPhysics(void)
|
|
{}
|
|
|
|
// @Ok
|
|
unsigned __int16 CPlatform::GetVariable(unsigned __int16 a2)
|
|
{
|
|
if (a2 != (unsigned __int16)0x2200)
|
|
{
|
|
return CBaddy::GetVariable(a2);
|
|
}
|
|
|
|
return this->field_338;
|
|
}
|
|
|
|
void validate_CPlatform(void){
|
|
VALIDATE_SIZE(CPlatform, 0x35C);
|
|
|
|
VALIDATE(CPlatform, field_338, 0x338);
|
|
}
|
|
|