mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 20:31:21 +00:00
Performs the same normalizing done to the RuntimeCommonB target, now all of the runtime headers have normalized include paths.
16 lines
255 B
C++
16 lines
255 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "Runtime/IOStreams.hpp"
|
|
#include "Runtime/Character/IMetaAnim.hpp"
|
|
|
|
namespace urde {
|
|
|
|
class CMetaAnimFactory {
|
|
public:
|
|
static std::shared_ptr<IMetaAnim> CreateMetaAnim(CInputStream& in);
|
|
};
|
|
|
|
} // namespace urde
|