blob: 3327d44c3858c75d1fcda2c5294dda105d0e6d77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include "ZRoom/ZRoomCommand.h"
class SetSpecialObjects : public ZRoomCommand
{
public:
uint8_t elfMessage;
uint16_t globalObject;
SetSpecialObjects(ZFile* nParent);
void ParseRawData() override;
std::string GetBodySourceCode() const override;
RoomCommand GetRoomCommand() const override;
std::string GetCommandCName() const override;
};
|