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.

13 lines
152 B

  1. #ifndef IZ_APP_H
  2. #define IZ_APP_H
  3. #include "config/IZ_config.h"
  4. typedef struct {
  5. IZ_Config config;
  6. } IZ_App;
  7. int IZ_InitializeApp(IZ_App*);
  8. #endif