File: star.h

package info (click to toggle)
xsoldier 1%3A1.8-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 1,524 kB
  • sloc: ansic: 5,944; sh: 884; makefile: 83
file content (18 lines) | stat: -rw-r--r-- 661 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* xsoldier, a shoot 'em up game with "not shooting" bonus
 * Copyright (C) 1997 Yuusuke HASHIMOTO <s945750@educ.info.kanagawa-u.ac.jp>
 * Copyright (C) 2002 Oohara Yuuma  <oohara@libra.interq.or.jp>
 *
 * This is a copyleft program.  See the file LICENSE for details.
 */
/* $Id: star.h,v 1.3 2002/04/20 00:19:14 oohara Exp $ */

#ifndef STAR_H_INCLUDE
#define STAR_H_INCLUDE

extern void InitStarModule(unsigned int w, unsigned int h);
extern int CreateStar(const char *filename, int pattern, int speed, int nstar);
extern void DrawStar(int id);
extern void ChangeStarParameter(int id, int speed);
extern int DeleteAllStar(void);

#endif /* STAR_H_INCLUDE */