summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/skills.h
blob: a38299eeaa5513ebf048c371170f9e9ef01b0a02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 *  File:       skills.h
 *  Summary:    Skill exercising functions.
 *  Written by: Linley Henzell
 *
 *  Modified for Crawl Reference by $Author$ on $Date$
 *
 *  Change History (most recent first):
 *
 *               <1>     -/--/--        LRH             Created
 */


#ifndef SKILLS_H
#define SKILLS_H

int skill_cost_needed( int level );
void calc_total_skill_points( void );

// last updated 12may2000 {dlb}
/* ***********************************************************************
 * called from: ability - bang - beam - debug - fight - it_use3 - item_use -
 *              items - misc - spell
 * *********************************************************************** */
int exercise(int exsk, int deg);


#endif