2015-08-17 05:26:58 +00:00
|
|
|
#ifndef __RETRO_CSTATEMANAGER_HPP__
|
|
|
|
#define __RETRO_CSTATEMANAGER_HPP__
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include "CBasics.hpp"
|
|
|
|
#include "CScriptMailbox.hpp"
|
|
|
|
#include "CMapWorldInfo.hpp"
|
|
|
|
#include "CPlayerState.hpp"
|
|
|
|
#include "CWorldTransManager.hpp"
|
|
|
|
|
2015-08-17 22:05:00 +00:00
|
|
|
namespace Retro
|
|
|
|
{
|
|
|
|
|
2015-08-18 05:54:43 +00:00
|
|
|
class CStateManager
|
2015-08-17 05:26:58 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
CStateManager(const std::weak_ptr<CScriptMailbox>&,
|
|
|
|
const std::weak_ptr<CMapWorldInfo>&,
|
|
|
|
const std::weak_ptr<CPlayerState>&,
|
|
|
|
const std::weak_ptr<CWorldTransManager>&);
|
|
|
|
};
|
|
|
|
|
2015-08-17 22:05:00 +00:00
|
|
|
}
|
|
|
|
|
2015-08-17 05:26:58 +00:00
|
|
|
#endif
|