56 lines
1.6 KiB
C++
56 lines
1.6 KiB
C++
/* ScummVM - Graphic Adventure Engine
|
|
*
|
|
* ScummVM is the legal property of its developers, whose names
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
* file distributed with this source distribution.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef HODJNPODJ_PEGGLE_OPTRES_H
|
|
#define HODJNPODJ_PEGGLE_OPTRES_H
|
|
|
|
namespace Bagel {
|
|
namespace HodjNPodj {
|
|
namespace Peggle {
|
|
|
|
#define IDC_OPTIONS_ARROWUP 503
|
|
#define IDC_OPTIONS_ARROWDN 504
|
|
|
|
#define ID_OPTIONS_CODES 450
|
|
|
|
#define IDR_BITMAP_SCROLL 451
|
|
#define IDD_OPTIONS_DIALOG 452
|
|
|
|
#define IDC_OPTIONS_RETURN 453
|
|
#define IDC_OPTIONS_QUIT 454
|
|
#define IDC_OPTIONS_RULES 455
|
|
#define IDC_OPTIONS_NEWGAME 456
|
|
#define IDC_OPTIONS_OPTIONS 457
|
|
#define IDC_OPTIONS_AUDIO 458
|
|
|
|
#define IDC_SUB_OKAY 9
|
|
#define IDC_SUB_CANCEL 10
|
|
#define IDC_SUB_CROSS 11
|
|
#define IDC_SUB_CROSSPLUS 12
|
|
#define IDC_SUB_TRIANGLE 13
|
|
#define IDC_SUB_TRIANGLEPLUS 14
|
|
|
|
} // namespace Peggle
|
|
} // namespace HodjNPodj
|
|
} // namespace Bagel
|
|
|
|
#endif
|