summaryrefslogtreecommitdiff
path: root/src/include/data_lemming.h
blob: 10f80cf74e0da58208999093013ad5715349c682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef DATA_LEMMING_H
#define DATA_LEMMING_H

#include "data_types.h"

typedef struct {
	unsigned int dead : 1;
	unsigned int side : 1;
	unsigned int flotter : 1; 
	unsigned int climber : 1;
	unsigned int remainCount: 4;
	unsigned int currRole: 4;
	unsigned int animState: 4;
	pos_t pos;
} stateLem_t;

#endif /*DATA_LEMMING_H*/