20 lines
284 B
C++
20 lines
284 B
C++
#ifndef EComponentAttached_h__
|
|
#define EComponentAttached_h__
|
|
|
|
#include "EventBroker.h"
|
|
#include "World.h"
|
|
#include "Entity.h"
|
|
#include "ComponentWrapper.h"
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct ComponentAttached : Event
|
|
{
|
|
EntityWrapper Entity;
|
|
ComponentWrapper Component;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |