mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-25 02:05:34 +00:00
18 lines
257 B
C++
18 lines
257 B
C++
#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__
|