mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-14 13:35:07 -05:00
13 lines
268 B
C
13 lines
268 B
C
|
#pragma once
|
||
|
|
||
|
#include "ZRoom/ZRoomCommand.h"
|
||
|
|
||
|
class EndMarker : public ZRoomCommand
|
||
|
{
|
||
|
public:
|
||
|
EndMarker(ZFile* nParent);
|
||
|
|
||
|
std::string GetBodySourceCode() const override;
|
||
|
std::string GetCommandCName() const override;
|
||
|
RoomCommand GetRoomCommand() const override;
|
||
|
};
|