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.

11 lines
156 B

  1. #ifndef IZ_POOL_H
  2. #define IZ_POOL_H
  3. #define POOL_MAX_SIZE 256
  4. typedef struct {
  5. // TODO allocate and implement pool memory management!
  6. } IZ_Pool;
  7. #endif