EEntityDeleted now provides an EntityWrapper instead of just an ID

This commit is contained in:
2016-03-09 23:47:42 +01:00
parent 91bad517d3
commit f6113b9d9c
5 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -2,14 +2,14 @@
#define EEntityDeleted_h__
#include "Event.h"
#include "Entity.h"
#include "EntityWrapper.h"
namespace Events
{
struct EntityDeleted : Event
{
EntityID DeletedEntity;
EntityWrapper DeletedEntity;
// True if the entity deletion was triggered because the entity's parent was deleted before it
bool Cascaded;
};