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