Files

13 lines
301 B
C++
Raw Permalink Normal View History

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