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 ECaptured_h__
#define ECaptured_h__
#include "Core/EventBroker.h"
#include "Core/Entity.h"
namespace Events
{
//triggers when a capturePoint has been taken over
struct Captured : Event
{
int TeamNumberThatCapturedCapturePoint;
EntityID CapturePointID;
};
}
#endif