mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-15 00:06:17 +01:00
15 lines
160 B
C
15 lines
160 B
C
|
|
||
|
#ifndef SFW_CORE_H
|
||
|
#define SFW_CORE_H
|
||
|
|
||
|
class SFWCore {
|
||
|
public:
|
||
|
static void setup();
|
||
|
static void cleanup();
|
||
|
|
||
|
protected:
|
||
|
static bool _initialized;
|
||
|
};
|
||
|
|
||
|
#endif
|