22 lines
414 B
C++
22 lines
414 B
C++
#ifndef Events_Captured_h__
|
|
#define Events_Captured_h__
|
|
|
|
#include "EventBroker.h"
|
|
#include "../Core/Entity.h"
|
|
#include "Engine/GLM.h"
|
|
|
|
namespace Events
|
|
{
|
|
|
|
//triggers when a capturePoint has been taken over
|
|
struct Captured : Event
|
|
{
|
|
int TeamNumberThatCapturedCapturePoint;
|
|
EntityID CapturePointTakenID;
|
|
EntityWrapper BlueTeamNextCapturePoint;
|
|
EntityWrapper RedTeamNextCapturePoint;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |