summaryrefslogtreecommitdiff
path: root/src/simulation/Stickman.h
blob: 0e9cd3c6510f59cc82d79a4c4d2a1cc829d28818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef STICKMAN_H_
#define STICKMAN_H_

struct playerst
{
	char comm;           //command cell
	char pcomm;          //previous command
	int elem;            //element power
	float legs[16];      //legs' positions
	float accs[8];       //accelerations
	char spwn;           //if stick man was spawned
	unsigned int frames; //frames since last particle spawn - used when spawning LIGH
};

#endif