Starter project for SDL2.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

13 satır
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