mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 19:36:43 +03:00
14 lines
197 B
C++
14 lines
197 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "RakNetTypes.h"
|
|
#include "RakString.h"
|
|
|
|
|
|
struct PingedCompatibleServer
|
|
{
|
|
RakNet::RakString m_name;
|
|
RakNet::SystemAddress m_address;
|
|
int m_lastPinged;
|
|
};
|