unown_form.h 283 B

12345678910111213
  1. #ifndef UNOWN_FORM_H
  2. #define UNOWN_FORM_H
  3. #pragma once
  4. #include <src/include/pokemon_data.h>
  5. /* Returns ascii char, or 0 if unown is not the current pokemon */
  6. char unown_form_get(PokemonData* pdata);
  7. void unown_form_set(PokemonData* pdata, char letter);
  8. #endif // UNOWN_FORM_H