mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-14 13:35:07 -05:00
20 lines
404 B
C
20 lines
404 B
C
|
#pragma once
|
||
|
|
||
|
#include "ZRoom/ZRoomCommand.h"
|
||
|
|
||
|
class SetObjectList : public ZRoomCommand
|
||
|
{
|
||
|
public:
|
||
|
std::vector<uint16_t> objects;
|
||
|
|
||
|
SetObjectList(ZFile* nParent);
|
||
|
|
||
|
void ParseRawData() override;
|
||
|
void DeclareReferences(const std::string& prefix) override;
|
||
|
|
||
|
std::string GetBodySourceCode() const override;
|
||
|
|
||
|
std::string GetCommandCName() const override;
|
||
|
RoomCommand GetRoomCommand() const override;
|
||
|
};
|