mirror of
https://github.com/ProjectDreamland/area51.git
synced 2024-11-01 03:01:49 +01:00
40 lines
No EOL
1.4 KiB
C++
40 lines
No EOL
1.4 KiB
C++
//==============================================================================
|
|
// DebugMenuPageGeneral.hpp
|
|
//
|
|
// Copyright (c) 2002-2003 Inevitable Entertainment Inc. All rights reserved.
|
|
//
|
|
// This class is the specific page for general debug optoins.
|
|
//
|
|
//==============================================================================
|
|
|
|
#ifndef DEBUG_MENU_PAGE_GENERAL_HPP
|
|
#define DEBUG_MENU_PAGE_GENERAL_HPP
|
|
|
|
//==============================================================================
|
|
// Defines
|
|
|
|
#define DEBUG_SCREEN_SHOT_DIR "C:\\GameData\\A51\\Apps\\Viewer\\ScreenShot\\"
|
|
|
|
//==============================================================================
|
|
|
|
class debug_menu_page_general : public debug_menu_page
|
|
{
|
|
public:
|
|
debug_menu_page_general ( );
|
|
virtual ~debug_menu_page_general ( ) { };
|
|
|
|
virtual void OnChangeItem ( debug_menu_item* pItem );
|
|
virtual void OnPreRender ( void );
|
|
|
|
protected:
|
|
debug_menu_item* m_pItemStatsLegend;
|
|
debug_menu_item* m_pItemShowQA;
|
|
debug_menu_item* m_pItemQuickLoad;
|
|
debug_menu_item* m_pItemQuickSave;
|
|
debug_menu_item* m_pItemScreenShotSize;
|
|
debug_menu_item* m_pItemScreenShot;
|
|
};
|
|
|
|
//==============================================================================
|
|
|
|
#endif // DEBUG_MENU_PAGE_GENERAL_HPP
|