mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-17 20:42:23 +00:00
subrepo: subdir: "tools/ZAPD" merged: "a3363333d" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "a3363333d" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
29 lines
540 B
C++
29 lines
540 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
#include <vector>
|
|
#include "ZCutscene.h"
|
|
#include "ZFile.h"
|
|
#include "tinyxml2.h"
|
|
|
|
class ZCutsceneMM : public ZCutsceneBase
|
|
{
|
|
public:
|
|
ZCutsceneMM(ZFile* nParent);
|
|
virtual ~ZCutsceneMM();
|
|
|
|
std::string GetBodySourceCode() const override;
|
|
|
|
size_t GetRawDataSize() const override;
|
|
|
|
void ParseRawData() override;
|
|
ZResourceType GetResourceType() const override;
|
|
|
|
protected:
|
|
int32_t numCommands;
|
|
int32_t endFrame;
|
|
std::vector<CutsceneCommand*> commands;
|
|
|
|
std::vector<uint32_t> data;
|
|
};
|