mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 19:49:54 +00:00
21 lines
255 B
C++
21 lines
255 B
C++
|
#include "LocalSystem.hpp"
|
||
|
#include "Main.hpp"
|
||
|
#include "Networking.hpp"
|
||
|
|
||
|
using namespace mwmp;
|
||
|
|
||
|
LocalSystem::LocalSystem()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
LocalSystem::~LocalSystem()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
Networking *LocalSystem::getNetworking()
|
||
|
{
|
||
|
return mwmp::Main::get().getNetworking();
|
||
|
}
|