summaryrefslogtreecommitdiff
path: root/src/factories/sm64/AnimationFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/factories/sm64/AnimationFactory.h')
-rw-r--r--src/factories/sm64/AnimationFactory.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/factories/sm64/AnimationFactory.h b/src/factories/sm64/AnimationFactory.h
index 9658c50..3917516 100644
--- a/src/factories/sm64/AnimationFactory.h
+++ b/src/factories/sm64/AnimationFactory.h
@@ -19,18 +19,14 @@ public:
};
class AnimationBinaryExporter : public BaseExporter {
- void Export(std::ostream& write, std::shared_ptr<IParsedData> data, std::string& entryName, YAML::Node& node, std::string* replacement) override;
+ ExportResult Export(std::ostream& write, std::shared_ptr<IParsedData> data, std::string& entryName, YAML::Node& node, std::string* replacement) override;
};
class AnimationFactory : public BaseFactory {
public:
std::optional<std::shared_ptr<IParsedData>> parse(std::vector<uint8_t>& buffer, YAML::Node& data) override;
- std::optional<std::shared_ptr<IParsedData>> parse_modding(std::vector<uint8_t>& buffer, YAML::Node& data) override {
- return std::nullopt;
- }
inline std::unordered_map<ExportType, std::shared_ptr<BaseExporter>> GetExporters() override {
return { REGISTER(Binary, AnimationBinaryExporter) };
}
- bool SupportModdedAssets() override { return false; }
};
} \ No newline at end of file