mirror of
https://github.com/Relintai/sfw.git
synced 2025-01-03 05:09:36 +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
|