sfw/sfwl/core/sfw_core.h

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