mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 03:53:52 +00:00
44 lines
764 B
C++
44 lines
764 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;
|
|
|
|
daysPassed = -1;
|
|
timeScale = -1;
|
|
}
|
|
|
|
RakNet::RakNetGUID guid;
|
|
|
|
double hour;
|
|
int day;
|
|
int month;
|
|
int year;
|
|
|
|
int daysPassed;
|
|
float timeScale;
|
|
|
|
bool hasPlayerCollision;
|
|
bool hasActorCollision;
|
|
bool hasPlacedObjectCollision;
|
|
bool useActorCollisionForPlacedObjects;
|
|
|
|
bool isValid;
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_BASEWORLDSTATE_HPP
|