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