Outline the rogue skillset

This commit is contained in:
Linus Probert 2018-09-11 15:49:58 +02:00
parent 03b60f6140
commit 988b53a4fa
1 changed files with 6 additions and 3 deletions

View File

@ -25,18 +25,21 @@
#include "vector2d.h"
// Forward declaration
struct Player;
typedef struct Player Player;
enum SkillType {
FLURRY,
BASH,
CHARGE,
DAGGER_THROW,
SIP_HEALTH
SIP_HEALTH,
BACKSTAB,
TRIP,
BLINK
};
typedef struct SkillData_t {
struct Player *player;
Player *player;
RoomMatrix *matrix;
Vector2d direction;
} SkillData;