Files
mcpe/source/network/PingedCompatibleServer.hpp
2024-03-28 14:39:40 +03:00

22 lines
565 B
C++

/********************************************************************
Minecraft: Pocket Edition - Decompilation Project
Copyright (C) 2023 iProgramInCpp
The following code is licensed under the BSD 1 clause license.
SPDX-License-Identifier: BSD-1-Clause
********************************************************************/
#pragma once
#include <string>
#include "thirdparty/raknet/RakNetTypes.h"
#include "thirdparty/raknet/RakString.h"
struct PingedCompatibleServer
{
RakNet::RakString m_name;
RakNet::SystemAddress m_address;
int m_lastPinged;
};