mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-04 16:45:10 -05:00
21 lines
467 B
C
21 lines
467 B
C
|
#pragma once
|
||
|
|
||
|
#include "ZRoom/ZRoomCommand.h"
|
||
|
|
||
|
class SetExitList : public ZRoomCommand
|
||
|
{
|
||
|
public:
|
||
|
std::vector<uint16_t> exits;
|
||
|
|
||
|
SetExitList(ZFile* nParent);
|
||
|
|
||
|
void DeclareReferences(const std::string& prefix) override;
|
||
|
void ParseRawDataLate() override;
|
||
|
void DeclareReferencesLate(const std::string& prefix) override;
|
||
|
|
||
|
std::string GetBodySourceCode() const override;
|
||
|
|
||
|
RoomCommand GetRoomCommand() const override;
|
||
|
std::string GetCommandCName() const override;
|
||
|
};
|