2015-08-17 22:05:00 +00:00
|
|
|
#include "CGameState.hpp"
|
2015-08-23 23:58:07 +00:00
|
|
|
#include "IOStreams.hpp"
|
2015-08-17 22:05:00 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
namespace urde
|
2015-08-17 22:05:00 +00:00
|
|
|
{
|
|
|
|
|
2015-08-20 02:52:07 +00:00
|
|
|
CGameState::CGameState(CInputStream& stream)
|
|
|
|
: m_stateFlag(stream.readUint32Big()), m_playerState(stream), m_gameTime(stream.readFloatBig())
|
|
|
|
{}
|
|
|
|
|
|
|
|
void CGameState::SetCurrentWorldId(unsigned int id, const std::string& name)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-08-17 22:05:00 +00:00
|
|
|
}
|