19 lines
244 B
C++
19 lines
244 B
C++
#ifndef Events_KillDeath_h__
|
|
#define Events_KillDeath_h__
|
|
|
|
#include "Core/EventBroker.h"
|
|
|
|
typedef unsigned int PlayerID;
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct KillDeath : public Event
|
|
{
|
|
PlayerID Casualty = -1;
|
|
PlayerID Killer = -1;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |