metaforce/Runtime/CGameState.cpp

16 lines
300 B
C++
Raw Normal View History

#include "CGameState.hpp"
2015-08-23 23:58:07 +00:00
#include "IOStreams.hpp"
namespace Retro
{
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)
{
}
}