Files
2015-10-08 20:02:51 +02:00

24 lines
286 B
C++

//
// Created by Administrator on 2015-10-05.
//
#ifndef DAYDREAM_EHITPAD_H
#define DAYDREAM_EHITPAD_H
#include "Core/EventBroker.h"
#include "Core/Entity.h"
namespace dd
{
namespace Events
{
struct HitPad : Event
{
EntityID Pad;
EntityID Ball;
};
}
}
#endif //DAYDREAM_EHITPAD_H