2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 06:27:43 +00:00

Non-factory resource loading; some CDummyWorld imps

This commit is contained in:
Jack Andersen
2016-07-23 11:41:18 -10:00
parent 8c9198ce1c
commit 9298ca7b99
14 changed files with 673 additions and 150 deletions

View File

@@ -0,0 +1,17 @@
#ifndef __URDE_CMAPWORLD_HPP__
#define __URDE_CMAPWORLD_HPP__
namespace urde
{
class IWorld;
class CMapWorld
{
public:
void SetWhichMapAreasLoaded(const IWorld&, int, int);
bool IsMapAreasStreaming() const;
};
}
#endif // __URDE_CMAPWORLD_HPP__