diff options
author | Dobbertin, Niclas <niclas.dobbertin@gmx.de> | 2023-06-24 23:04:23 +0200 |
---|---|---|
committer | Dobbertin, Niclas <niclas.dobbertin@gmx.de> | 2023-06-24 23:04:23 +0200 |
commit | 3422a87bdb087b6d927203e266beb71027779dbe (patch) | |
tree | 3d8381b27c94529c45ad7287695befe3eaa241c5 /characters.h |
Diffstat (limited to 'characters.h')
-rw-r--r-- | characters.h | 20 |
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_ |