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