diff options
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_ |