ConnectRequest event and some other shit

This commit is contained in:
Tleety
2016-03-08 22:24:32 +01:00
parent 3394d65055
commit 95f68cc888
8 changed files with 1753 additions and 1702 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef Events_ConnectRequest_h__
#define Events_ConnectRequest_h__
#include "Core/EventBroker.h"
namespace Events
{
struct ConnectRequest : public Event
{
std::string IP = "";
int Port = 0;
};
}
#endif
+1
View File
@@ -13,6 +13,7 @@
#include "GUI/EButtonReleased.h"
#include "Input/EInputCommand.h"
#include "Network/ESearchForServers.h"
#include "Network/EConnectRequest.h"
class MainMenuSystem : public ImpureSystem