metaforce/Runtime/CGameState.cpp

15 lines
275 B
C++
Raw Normal View History

#include "CGameState.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)
{
}
}