2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 09:47:43 +00:00
This commit is contained in:
Jack Andersen
2015-08-24 21:04:50 -10:00
parent e9de110cee
commit 3f1025abb3
11 changed files with 63 additions and 41 deletions

View File

@@ -7,6 +7,12 @@ namespace Retro
{
class CCharacterFactoryBuilder : public IFactory
{
public:
std::unique_ptr<IObj> Build(const SObjectTag&, const CVParamTransfer&) {}
void BuildAsync(const SObjectTag&, const CVParamTransfer&, IObj**) {}
void CancelBuild(const SObjectTag&) {}
bool CanBuild(const SObjectTag&) {}
u32 GetResourceIdByName(const char*) const {}
};
}