mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-13 13:05:06 -05:00
19 lines
330 B
C
19 lines
330 B
C
|
#pragma once
|
||
|
|
||
|
#include "ZRoom/ZRoomCommand.h"
|
||
|
|
||
|
class SetEchoSettings : public ZRoomCommand
|
||
|
{
|
||
|
public:
|
||
|
uint8_t echo;
|
||
|
|
||
|
SetEchoSettings(ZFile* nParent);
|
||
|
|
||
|
void ParseRawData() override;
|
||
|
|
||
|
std::string GetBodySourceCode() const override;
|
||
|
|
||
|
std::string GetCommandCName() const override;
|
||
|
RoomCommand GetRoomCommand() const override;
|
||
|
};
|