Outline the rogue skillset
This commit is contained in:
parent
03b60f6140
commit
988b53a4fa
|
@ -25,18 +25,21 @@
|
||||||
#include "vector2d.h"
|
#include "vector2d.h"
|
||||||
|
|
||||||
// Forward declaration
|
// Forward declaration
|
||||||
struct Player;
|
typedef struct Player Player;
|
||||||
|
|
||||||
enum SkillType {
|
enum SkillType {
|
||||||
FLURRY,
|
FLURRY,
|
||||||
BASH,
|
BASH,
|
||||||
CHARGE,
|
CHARGE,
|
||||||
DAGGER_THROW,
|
DAGGER_THROW,
|
||||||
SIP_HEALTH
|
SIP_HEALTH,
|
||||||
|
BACKSTAB,
|
||||||
|
TRIP,
|
||||||
|
BLINK
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct SkillData_t {
|
typedef struct SkillData_t {
|
||||||
struct Player *player;
|
Player *player;
|
||||||
RoomMatrix *matrix;
|
RoomMatrix *matrix;
|
||||||
Vector2d direction;
|
Vector2d direction;
|
||||||
} SkillData;
|
} SkillData;
|
||||||
|
|
Loading…
Reference in New Issue