Files

18 lines
482 B
C++
Raw Permalink Normal View History

#pragma once
#include "Resource.h"
2024-03-26 21:26:31 -04:00
#include "ResourceFactoryBinary.h"
2024-03-26 21:26:31 -04:00
namespace SOH {
class ResourceFactoryBinaryKeyFrameSkel : public Ship::ResourceFactoryBinary {
public:
std::shared_ptr<Ship::IResource> ReadResource(std::shared_ptr<Ship::File> file) override;
};
class ResourceFactoryBinaryKeyFrameAnim : public Ship::ResourceFactoryBinary {
public:
std::shared_ptr<Ship::IResource> ReadResource(std::shared_ptr<Ship::File> file) override;
};
2024-05-22 09:52:56 -04:00
}; // namespace SOH