mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 20:49:56 +00:00
32 lines
428 B
C++
32 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
|