mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2025-02-22 05:40:51 +00:00
16 lines
224 B
C++
16 lines
224 B
C++
#include "switch.h"
|
|
#include "validate.h"
|
|
|
|
// @Ok
|
|
void __inline CSwitch::SwitchInactive(void)
|
|
{
|
|
this->field_100 = 0;
|
|
}
|
|
|
|
void validate_CSwitch(void)
|
|
{
|
|
VALIDATE_SIZE(CSwitch, 0x128);
|
|
|
|
VALIDATE(CSwitch, field_100, 0x100);
|
|
}
|