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