mirror of https://github.com/zeldaret/oot.git
17 lines
442 B
C++
17 lines
442 B
C++
#pragma once
|
|
|
|
#include "../ZRoomCommand.h"
|
|
|
|
class SetSpecialObjects : public ZRoomCommand
|
|
{
|
|
public:
|
|
SetSpecialObjects(ZRoom* nZRoom, std::vector<uint8_t> rawData, uint32_t rawDataIndex);
|
|
|
|
virtual std::string GenerateSourceCodePass1(std::string roomName, uint32_t baseAddress) override;
|
|
virtual std::string GetCommandCName() override;
|
|
virtual RoomCommand GetRoomCommand() override;
|
|
|
|
private:
|
|
uint8_t elfMessage;
|
|
uint16_t globalObject;
|
|
}; |