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