12 lines
255 B
C
12 lines
255 B
C
|
class CNotificationSettings
|
||
|
{
|
||
|
static void InFullScreenChanged (CNotificationSettings * _this);
|
||
|
|
||
|
protected:
|
||
|
CNotificationSettings();
|
||
|
virtual ~CNotificationSettings();
|
||
|
|
||
|
//Settings that can be changed on the fly
|
||
|
static bool bInFullScreen;
|
||
|
};
|