mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-13 19:51:16 +00:00
17 lines
279 B
C++
17 lines
279 B
C++
#ifndef GASSTATIONSTATE_H
|
|
#define GASSTATIONSTATE_H
|
|
|
|
#include "legostate.h"
|
|
|
|
class GasStationState : public LegoState
|
|
{
|
|
public:
|
|
GasStationState();
|
|
|
|
// field 0x8 is prob MxResult
|
|
// field 0xc is prob MxResult
|
|
// field 0x10 is prob MxResult
|
|
};
|
|
|
|
#endif // GASSTATIONSTATE_H
|