summaryrefslogtreecommitdiff
path: root/src/simulation/Stickman.h
diff options
context:
space:
mode:
authorjacob1 <jfu614@gmail.com>2013-03-06 17:05:59 (GMT)
committer jacob1 <jfu614@gmail.com>2013-03-06 17:05:59 (GMT)
commit037618e6f8e6a37574f7ef8ffd90e490fb0ea137 (patch)
treed80246d31a26aee7735a566bccc8ce9e8e4e305d /src/simulation/Stickman.h
parentad951eb9af20cd1a784fab39c41ade1c19dff2ca (diff)
downloadpowder-037618e6f8e6a37574f7ef8ffd90e490fb0ea137.zip
powder-037618e6f8e6a37574f7ef8ffd90e490fb0ea137.tar.gz
remove auto generated comments from all files, fix some missing tabs, remove unused variables from config.h
Diffstat (limited to 'src/simulation/Stickman.h')
-rw-r--r--src/simulation/Stickman.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/simulation/Stickman.h b/src/simulation/Stickman.h
new file mode 100644
index 0000000..0e9cd3c
--- /dev/null
+++ b/src/simulation/Stickman.h
@@ -0,0 +1,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