Re-implementation of Izanami game engine
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

15 wiersze
239 B

  1. #ifndef IZ_CONFIG_POOL_H
  2. #define IZ_CONFIG_POOL_H
  3. /**
  4. * Structure that defines the application's pools configuration.
  5. */
  6. typedef struct {
  7. /**
  8. * Capacity of the characters pool.
  9. */
  10. unsigned int characters;
  11. } IZ_ConfigPool;
  12. #endif