mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-27 15:20:25 +00:00
22 lines
299 B
C++
22 lines
299 B
C++
#pragma once
|
|
|
|
#ifndef SWITCH_H
|
|
#define SWITCH_H
|
|
|
|
#include "export.h"
|
|
#include "ob.h"
|
|
|
|
class CSwitch : public CBody
|
|
{
|
|
public:
|
|
EXPORT void SwitchInactive(void);
|
|
unsigned char padTop[0x100-0xF4];
|
|
|
|
int field_100;
|
|
|
|
unsigned char padBottom[0x128-0x100-4];
|
|
};
|
|
|
|
void validate_CSwitch(void);
|
|
#endif
|