File: score.h

package info (click to toggle)
dangen 0.5-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,868 kB
  • sloc: ansic: 49,744; sh: 999; yacc: 494; makefile: 273; lex: 142
file content (14 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* $Id: score.h,v 1.13 2005/06/30 15:11:02 oohara Exp $ */

#ifndef __DANGEN_SCORE_H__
#define __DANGEN_SCORE_H__

void clear_score(void);
int get_score(void);
int get_stage_score(int stage);
int get_stage_cleared(int stage);
void set_stage_cleared(int stage, int n);
int add_score(int delta);
int add_damage_score(int hit_point, int damage);

#endif /* not __DANGEN_SCORE_H__ */