summaryrefslogtreecommitdiff
path: root/characters.h
diff options
context:
space:
mode:
authorDobbertin, Niclas <niclas.dobbertin@gmx.de>2023-06-24 23:04:23 +0200
committerDobbertin, Niclas <niclas.dobbertin@gmx.de>2023-06-24 23:04:23 +0200
commit3422a87bdb087b6d927203e266beb71027779dbe (patch)
tree3d8381b27c94529c45ad7287695befe3eaa241c5 /characters.h
init codeHEADmaster
Diffstat (limited to 'characters.h')
-rw-r--r--characters.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/characters.h b/characters.h
new file mode 100644
index 0000000..ba1ffb2
--- /dev/null
+++ b/characters.h
@@ -0,0 +1,20 @@
+#ifndef CHARACTERS_H_
+#define CHARACTERS_H_
+
+#include "player.h"
+
+const struct Player TEMPLATE_1 = {
+ 100, // pos x
+ 100, // pos y
+ 100, // vel x
+ 100, // vel y
+ 0, // accel x
+ 0, // accel y
+ 100, // max vel x
+ 100, // max vel y
+ 100, // hp
+ 0, // geometry
+ 0 // geometry len
+};
+
+#endif // CHARACTERS_H_