mirror of
https://github.com/zeldaret/oot
synced 2026-08-30 01:20:05 -04:00
ba0c6965ca
* 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
19 lines
484 B
C++
19 lines
484 B
C++
#pragma once
|
|
|
|
#include "../ZRoomCommand.h"
|
|
|
|
class SetObjectList : public ZRoomCommand
|
|
{
|
|
public:
|
|
SetObjectList(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();
|
|
virtual int32_t GetRawDataSize();
|
|
virtual std::string GenerateExterns();
|
|
|
|
private:
|
|
std::vector<uint16_t> objects;
|
|
uint32_t segmentOffset;
|
|
}; |