You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw-tes3mp/components/openmw-mp/Base/BaseWorldstate.hpp

35 lines
538 B
C++

#ifndef OPENMW_BASEWORLDSTATE_HPP
#define OPENMW_BASEWORLDSTATE_HPP
#include <components/openmw-mp/Base/BaseStructs.hpp>
#include <RakNetTypes.h>
namespace mwmp
{
class BaseWorldstate
{
public:
BaseWorldstate()
{
month = -1;
day = -1;
hour = -1;
timeScale = -1;
}
RakNet::RakNetGUID guid;
int month;
int day;
double hour;
float timeScale;
bool isValid;
};
}
#endif //OPENMW_BASEWORLDSTATE_HPP