Moved some events to their correct place

This commit is contained in:
2016-02-24 11:04:56 +01:00
parent 2c18068059
commit 4aaba03852
13 changed files with 52 additions and 53 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef EWin_h__
#define EWin_h__
#include "Core/EventBroker.h"
#include "Core/Entity.h"
namespace Events
{
//triggers when a team has captured all capturePoints
struct Win : Event
{
//can be 0 = none, 1,2
int TeamThatWon;
};
}
#endif