2024-03-09 19:04:24 +00:00
|
|
|
#include "platform.h"
|
|
|
|
#include "validate.h"
|
|
|
|
|
2024-05-27 17:51:40 +00:00
|
|
|
// @Ok
|
|
|
|
void CPlatform::Shouldnt_DoPhysics_Be_Virtual(void)
|
|
|
|
{
|
|
|
|
this->DoPhysics();
|
|
|
|
}
|
|
|
|
|
2024-07-12 16:22:59 +00:00
|
|
|
// @BIGTODO
|
2024-05-27 17:51:40 +00:00
|
|
|
void CPlatform::DoPhysics(void)
|
|
|
|
{}
|
|
|
|
|
2024-05-31 18:08:52 +00:00
|
|
|
// @Ok
|
|
|
|
unsigned __int16 CPlatform::GetVariable(unsigned __int16 a2)
|
|
|
|
{
|
|
|
|
if (a2 != (unsigned __int16)0x2200)
|
|
|
|
{
|
|
|
|
return CBaddy::GetVariable(a2);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this->field_338;
|
|
|
|
}
|
|
|
|
|
2024-03-09 19:04:24 +00:00
|
|
|
void validate_CPlatform(void){
|
|
|
|
VALIDATE_SIZE(CPlatform, 0x35C);
|
2024-05-31 18:08:52 +00:00
|
|
|
|
|
|
|
VALIDATE(CPlatform, field_338, 0x338);
|
2024-03-09 19:04:24 +00:00
|
|
|
}
|
|
|
|
|