mirror of
https://gitlab.com/hashborgir/plugy.git
synced 2024-12-02 13:36:02 +00:00
20 lines
561 B
C
20 lines
561 B
C
|
/*=================================================================
|
||
|
File created by Yohann NICOLAS.
|
||
|
|
||
|
Unassign Skill Point for futher re-assignment.
|
||
|
|
||
|
=================================================================*/
|
||
|
|
||
|
#ifndef __SKILLSPOINTS_H__INCLUDED
|
||
|
#define __SKILLSPOINTS_H__INCLUDED
|
||
|
|
||
|
extern bool active_SkillsPoints;
|
||
|
extern bool unassignSkillsPointsOneByOne;
|
||
|
extern int posXUnassignSkillBtn, posYUnassignSkillBtn;
|
||
|
|
||
|
void UnassignAllSkillsPoints(Unit* ptChar);
|
||
|
void client_UnassignAllSkillsPoints();
|
||
|
|
||
|
void Install_SkillsPoints();
|
||
|
|
||
|
#endif
|