project64/Source/Project64/Settings/NotificationSettings.h

24 lines
432 B
C
Raw Normal View History

2016-01-27 09:11:59 +00:00
#pragma once
class CNotificationSettings
{
static void StaticRefreshSettings(CNotificationSettings * _this)
{
_this->RefreshSettings();
}
void RefreshSettings(void);
static bool m_bInFullScreen;
protected:
CNotificationSettings();
virtual ~CNotificationSettings();
void RegisterNotifications(void);
2022-09-26 02:31:54 +00:00
inline bool InFullScreen(void) const
{
return m_bInFullScreen;
}
2016-01-27 09:11:59 +00:00
};