mirror of
https://github.com/zeldaret/oot.git
synced 2025-05-11 03:23:46 +00:00
* remove zap * git subrepo clone https://github.com/zeldaret/ZAPD.git tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "cd4a8760b" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "cd4a8760b" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * remove thanks.md * zap2 -> zapd and spec changes * remove submodule init
17 lines
No EOL
405 B
C++
17 lines
No EOL
405 B
C++
#pragma once
|
|
|
|
#include "../ZRoomCommand.h"
|
|
|
|
class SetSpecialObjects : public ZRoomCommand
|
|
{
|
|
public:
|
|
SetSpecialObjects(ZRoom* nZRoom, std::vector<uint8_t> rawData, int rawDataIndex);
|
|
|
|
virtual std::string GenerateSourceCodePass1(std::string roomName, int baseAddress);
|
|
virtual std::string GetCommandCName();
|
|
virtual RoomCommand GetRoomCommand();
|
|
|
|
private:
|
|
uint8_t elfMessage;
|
|
uint16_t globalObject;
|
|
}; |