2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

17 linhas
339 B

  1. #ifndef IZ_CONFIG_GUID_H
  2. #define IZ_CONFIG_GUID_H
  3. #include <SDL_guid.h>
  4. #include <ini-config.h>
  5. #include <minIni.h>
  6. INI_CONFIG_DECLARE_TYPE(Guid);
  7. #define INI_CONFIG_TYPE_GUID (INI_ConfigType) { \
  8. .size = sizeof(SDL_GUID), \
  9. .load = INI_ConfigLoadGuid, \
  10. .save = INI_ConfigSaveGuid, \
  11. .override = INI_ConfigOverrideGuid, \
  12. }
  13. #endif