File: tpower_bay.h

package info (click to toggle)
nighthawk 1.0-9
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,420 kB
  • ctags: 18,064
  • sloc: fortran: 17,597; cpp: 4,948; makefile: 87; sh: 13
file content (17 lines) | stat: -rw-r--r-- 248 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _TPOWER_BAY_H
#define _TPOWER_BAY_H

class tpower_bay
{
public:
  int pos_x,pos_y;
  int anim_ptr,anim_len,anim_speed;
  tbm *bm;

  tpower_bay(void);
  void init(int px,int py);
  void draw(int px,int py);
  void bg_calc(void);
};

#endif