mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 08:05:07 -04:00
21 lines
381 B
C
21 lines
381 B
C
|
#pragma once
|
||
|
|
||
|
#include "ZRoom/ZRoomCommand.h"
|
||
|
|
||
|
class SetSoundSettings : public ZRoomCommand
|
||
|
{
|
||
|
public:
|
||
|
uint8_t reverb;
|
||
|
uint8_t nightTimeSFX;
|
||
|
uint8_t musicSequence;
|
||
|
|
||
|
SetSoundSettings(ZFile* nParent);
|
||
|
|
||
|
void ParseRawData() override;
|
||
|
|
||
|
std::string GetBodySourceCode() const override;
|
||
|
|
||
|
RoomCommand GetRoomCommand() const override;
|
||
|
std::string GetCommandCName() const override;
|
||
|
};
|