18 lines
262 B
C++
18 lines
262 B
C++
#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_
|