30 lines
1.1 KiB
C++
30 lines
1.1 KiB
C++
/****************************************************************************
|
|
* *
|
|
* Project 64 - A Nintendo 64 emulator. *
|
|
* http://www.pj64-emu.com/ *
|
|
* Copyright (C) 2012 Project64. All rights reserved. *
|
|
* *
|
|
* License: *
|
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
|
* *
|
|
****************************************************************************/
|
|
#pragma once
|
|
|
|
class CNotificationSettings
|
|
{
|
|
static void StaticRefreshSettings (CNotificationSettings * _this)
|
|
{
|
|
_this->RefreshSettings();
|
|
}
|
|
|
|
void RefreshSettings ( void );
|
|
|
|
static bool m_bInFullScreen;
|
|
|
|
protected:
|
|
CNotificationSettings();
|
|
virtual ~CNotificationSettings();
|
|
|
|
inline bool InFullScreen ( void ) const { return m_bInFullScreen; }
|
|
};
|