Dash effect now working over network, by sending events. Similar to jump effect.

This commit is contained in:
stiffly
2016-03-02 16:48:38 +01:00
parent 1217b25d02
commit a5c086e389
9 changed files with 81 additions and 17 deletions
+5 -1
View File
@@ -2,11 +2,15 @@
#define Events_DashAbility_h__
#include "Core/Event.h"
#include "Core/EntityWrapper.h"
namespace Events
{
struct DashAbility : public Event { };
struct DashAbility : public Event
{
EntityID Player;
};
}