mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-08 07:52:09 +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
|