lol its in c
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.

9 lines
107 B

2 years ago
  1. #ifndef IS_MOB_H_
  2. #define IS_MOB_H_
  3. typedef enum {
  4. MOB_ID_RAT,
  5. MOB_ID_LIZARD,
  6. } mob_id_t;
  7. #endif