~ubuntu-branches/ubuntu/intrepid/wing/intrepid

« back to all changes in this revision

Viewing changes to planetype.h

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hocevar (Debian packages)
  • Date: 2003-10-02 16:28:06 UTC
  • Revision ID: james.westby@ubuntu.com-20031002162806-7l2t9hy4eq6putz3
Tags: 0.7-20
* debian/control:
  + Set policy to 3.6.1.0.
  + Wrote more meaningful long descriptions (Closes: #210137).

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#ifndef _PlaneTYPE_H
28
28
#define _PlaneTYPE_H
29
29
 
30
 
#include <fstream.h>
 
30
#include <fstream>
31
31
#include "bullettype.h"
32
32
#include "animationtype.h"
33
33
#include "util.h"
63
63
      BITMAP *    GetImage      ( int index ) const;
64
64
      WeaponEnum  GetWeapon     ( ) const;
65
65
      bool                      GetDead           ( ) const;
 
66
      bool                      GetVuln           ( ) const;
66
67
      long int    GetScore      ( ) const;
67
68
      int         GetXPos       ( ) const;
68
69
      int         GetYPos       ( ) const;
82
83
      BulletTYPE          myBullets;
83
84
      AnimationTYPE       myArrayOfImages;
84
85
      AnimationTYPE       explode_images;
85
 
      unsigned int           last_shot_time;
 
86
      int                 last_shot_time;
 
87
      int                 invuln_count;
86
88
      long int                            myScore;
87
89
      int                 myNumLives;
88
90
      apvector <spr_mask > myPlaneMasks;