mirror of
https://github.com/HarbourMasters/Shipwright
synced 2026-06-18 23:56:51 -04:00
4441304dfd
* support LUS not providing an array resource type/factory * bump to latest upstream
12 lines
306 B
C++
12 lines
306 B
C++
#pragma once
|
|
|
|
#include "resource/Resource.h"
|
|
#include "resource/ResourceFactoryBinary.h"
|
|
|
|
namespace SOH {
|
|
class ResourceFactoryBinaryArrayV0 : public Ship::ResourceFactoryBinary {
|
|
public:
|
|
std::shared_ptr<Ship::IResource> ReadResource(std::shared_ptr<Ship::File> file) override;
|
|
};
|
|
} // namespace LUS
|