a6a08f48bb
# Conflicts: # include/Engine/Network/Client.h # src/Engine/Network/Client.cpp
12 lines
209 B
C++
12 lines
209 B
C++
#ifndef PlayerDefinition_h__
|
|
#define PlayerDefinition_h__
|
|
#include <string>
|
|
|
|
struct PlayerDefinition {
|
|
int EntityID = -1;
|
|
std::string Name = "";
|
|
boost::asio::ip::udp::endpoint Endpoint;
|
|
};
|
|
|
|
#endif
|