1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 18:19:55 +00:00
openmw-tes3mp/components/openmw-mp/Base/BaseSystem.hpp

31 lines
428 B
C++

#ifndef OPENMW_BASESYSTEM_HPP
#define OPENMW_BASESYSTEM_HPP
#include <string>
#include <RakNetTypes.h>
namespace mwmp
{
class BaseSystem
{
public:
BaseSystem(RakNet::RakNetGUID guid) : guid(guid)
{
}
BaseSystem()
{
}
RakNet::RakNetGUID guid;
std::string playerName;
std::string serverPassword;
};
}
#endif //OPENMW_BASESYSTEM_HPP