mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-12-18 10:17:08 +00:00
18 lines
242 B
C++
18 lines
242 B
C++
#include "platform.h"
|
|
#include "validate.h"
|
|
|
|
// @Ok
|
|
void CPlatform::Shouldnt_DoPhysics_Be_Virtual(void)
|
|
{
|
|
this->DoPhysics();
|
|
}
|
|
|
|
// @TODO
|
|
void CPlatform::DoPhysics(void)
|
|
{}
|
|
|
|
void validate_CPlatform(void){
|
|
VALIDATE_SIZE(CPlatform, 0x35C);
|
|
}
|
|
|