Fixed comment on Trigger events.

This commit is contained in:
William Moberg
2015-12-17 13:48:35 +01:00
parent 5160a45b44
commit 3e2ffdb85b
+2 -2
View File
@@ -7,7 +7,7 @@
namespace Events namespace Events
{ {
/** Thrown once, when an entity is completely inside a trigger. */ /** Thrown once, when an entity is only touching a trigger. */
struct TriggerTouch : Event struct TriggerTouch : Event
{ {
/** The id of the entity that touches the trigger. */ /** The id of the entity that touches the trigger. */
@@ -25,7 +25,7 @@ struct TriggerLeave : Event
EntityID Trigger; EntityID Trigger;
}; };
/** Thrown once, when an entity is completely inside a trigger. */ /** Thrown once, when an entity is completely contained inside a trigger. */
struct TriggerEnter : Event struct TriggerEnter : Event
{ {
/** The id of the entity that entered the trigger. */ /** The id of the entity that entered the trigger. */