Starter project for SDL2.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
143 B

  1. #ifndef IZ_CREATURE_H
  2. #define IZ_CREATURE_H
  3. #include "IZ_object.h"
  4. typedef struct {
  5. IZ_Object as_object;
  6. float hp;
  7. } IZ_Creature;
  8. #endif