mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-26 23:00:30 +00:00
18 lines
244 B
C++
18 lines
244 B
C++
#include "wire.h"
|
|
|
|
#include "validate.h"
|
|
|
|
// @Ok
|
|
void CLaserFence::SetPushback(bool pushback)
|
|
{
|
|
this->field_114 = pushback;
|
|
}
|
|
|
|
|
|
void validate_CLaserFence(void)
|
|
{
|
|
VALIDATE_SIZE(CLaserFence, 0x11C);
|
|
|
|
VALIDATE(CLaserFence, field_114, 0x114);
|
|
}
|