You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
441 B
C++
19 lines
441 B
C++
//
|
|
// Created by koncord on 18.04.17.
|
|
//
|
|
|
|
#include "BaseClientPacketProcessor.hpp"
|
|
#include "../Main.hpp"
|
|
|
|
using namespace mwmp;
|
|
|
|
RakNet::RakNetGUID BaseClientPacketProcessor::guid;
|
|
RakNet::RakNetGUID BaseClientPacketProcessor::myGuid;
|
|
RakNet::SystemAddress BaseClientPacketProcessor::serverAddr;
|
|
bool BaseClientPacketProcessor::request;
|
|
|
|
LocalPlayer *BaseClientPacketProcessor::getLocalPlayer()
|
|
{
|
|
return Main::get().getLocalPlayer();
|
|
}
|