#ifndef HIISI_H_ #define HIISI_H_ class HiisiEngine { public: int init(int argc, char *argv[]); int event(); int iterate(); void quit(); private: void *_window = 0; void *_renderer = 0; void *_module = 0; }; #endif // HIISI_H_