mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-08 07:52:09 +01:00
18 lines
199 B
C++
18 lines
199 B
C++
//--STRIP
|
|
#ifndef SFW_CORE_H
|
|
#define SFW_CORE_H
|
|
//--STRIP
|
|
|
|
class SFWCore {
|
|
public:
|
|
static void setup();
|
|
static void cleanup();
|
|
|
|
protected:
|
|
static bool _initialized;
|
|
};
|
|
|
|
//--STRIP
|
|
#endif
|
|
//--STRIP
|