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" #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;