mirror of https://github.com/AxioDL/metaforce.git
17 lines
391 B
C++
17 lines
391 B
C++
#pragma once
|
|
|
|
#include "Editor/ProjectResourceFactoryBase.hpp"
|
|
#include "Runtime/CToken.hpp"
|
|
|
|
namespace urde {
|
|
class MP1OriginalIDs;
|
|
class CSimplePool;
|
|
|
|
class ProjectResourceFactoryMP1 : public ProjectResourceFactoryBase {
|
|
public:
|
|
ProjectResourceFactoryMP1(hecl::ClientProcess& clientProc);
|
|
void IndexMP1Resources(hecl::Database::Project& proj, CSimplePool& sp);
|
|
};
|
|
|
|
} // namespace urde
|