File: entitytype.h

package info (click to toggle)
enemylines7 0.6-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,640 kB
  • sloc: cpp: 21,756; makefile: 24
file content (24 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __el__entitytype_h
#define __el__entitytype_h

#include "release.h"

namespace PRJID {

typedef enum e_entitytype {
	ET_NONE,
	ET_PLAYER,
	ET_BOMB,
	ET_FLOATING,
	ET_PROJECTILE,
	ET_PLANE1,
	ET_PLANE2,
	ET_POLLYWOG,

	ET_FALLING,
};


}// namespace

#endif