blob: a2e8432cb32ae256ea5154f1f92d8f4879bcfcbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Resource.h"
#include "ResourceFactoryBinary.h"
namespace SF64 {
class ResourceFactoryBinaryScriptCMDV0 : public Ship::ResourceFactoryBinary {
public:
std::shared_ptr<Ship::IResource> ReadResource(std::shared_ptr<Ship::File> file) override;
};
}; // namespace LUS
|