mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-06-19 01:20:08 -07:00
* imgui * detangle zapdutils * ship namespace * register global factories * readfb * deps * bump submodules * keyframe * bump modules
12 lines
294 B
C++
12 lines
294 B
C++
#pragma once
|
|
|
|
#include "Resource.h"
|
|
#include "ResourceFactoryBinary.h"
|
|
|
|
namespace SOH {
|
|
class ResourceFactoryBinaryAudioSampleV2 : public Ship::ResourceFactoryBinary {
|
|
public:
|
|
std::shared_ptr<Ship::IResource> ReadResource(std::shared_ptr<Ship::File> file) override;
|
|
};
|
|
} // namespace SOH
|