mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-12 04:25:12 -05:00
22 lines
412 B
C
22 lines
412 B
C
|
#pragma once
|
||
|
|
||
|
#include "ZRoom/ZRoomCommand.h"
|
||
|
|
||
|
class SetSkyboxSettings : public ZRoomCommand
|
||
|
{
|
||
|
public:
|
||
|
uint8_t unk1; // (MM Only)
|
||
|
uint8_t skyboxNumber;
|
||
|
uint8_t cloudsType;
|
||
|
uint8_t isIndoors;
|
||
|
|
||
|
SetSkyboxSettings(ZFile* nParent);
|
||
|
|
||
|
void ParseRawData() override;
|
||
|
|
||
|
std::string GetBodySourceCode() const override;
|
||
|
|
||
|
std::string GetCommandCName() const override;
|
||
|
RoomCommand GetRoomCommand() const override;
|
||
|
};
|