2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 23:47:42 +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

@@ -13,6 +13,15 @@ public:
CSimplePool(IFactory&)
{
}
IObj& GetObj(const SObjectTag&, const CVParamTransfer&) {}
IObj& GetObj(const SObjectTag&) {}
IObj& GetObj(char const*) {}
IObj& GetObj(char const*, const CVParamTransfer&) {}
void HasObject(const SObjectTag&) const {}
void ObjectIsLive(const SObjectTag&) const {}
IFactory& GetFactory() const {}
void Flush() {}
void ObjectUnreferenced(const SObjectTag&) {}
};
}