mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-12 04:25:12 -05:00
24 lines
520 B
C
24 lines
520 B
C
|
#pragma once
|
||
|
|
||
|
#include "ZRoom/ZRoom.h"
|
||
|
#include "ZRoom/ZRoomCommand.h"
|
||
|
|
||
|
class SetAlternateHeaders : public ZRoomCommand
|
||
|
{
|
||
|
public:
|
||
|
std::vector<uint32_t> headers;
|
||
|
|
||
|
SetAlternateHeaders(ZFile* nParent);
|
||
|
|
||
|
void DeclareReferences(const std::string& prefix) override;
|
||
|
void ParseRawDataLate() override;
|
||
|
void DeclareReferencesLate(const std::string& prefix) override;
|
||
|
|
||
|
std::string GetBodySourceCode() const override;
|
||
|
|
||
|
RoomCommand GetRoomCommand() const override;
|
||
|
std::string GetCommandCName() const override;
|
||
|
|
||
|
private:
|
||
|
};
|