2024-04-20 15:57:49 +00:00
|
|
|
/*
|
|
|
|
* Descent 3
|
|
|
|
* Copyright (C) 2024 Parallax Software
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2024-04-16 03:43:29 +00:00
|
|
|
/*
|
|
|
|
* File: InSprocketResource.h
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __InSprocketResource__
|
|
|
|
#define __InSprocketResource__
|
|
|
|
|
|
|
|
// ICN#s -- Icon suites
|
|
|
|
enum {
|
2024-04-16 18:56:40 +00:00
|
|
|
kIconSuiteID_YawR = 132,
|
|
|
|
kIconSuiteID_YawL = 133,
|
|
|
|
kIconSuiteID_Yaw = 134,
|
2024-04-16 03:43:29 +00:00
|
|
|
|
2024-04-16 18:56:40 +00:00
|
|
|
kIconSuiteID_PitchD = 135,
|
|
|
|
kIconSuiteID_PitchU = 136,
|
|
|
|
kIconSuiteID_Pitch = 137,
|
2024-04-16 03:43:29 +00:00
|
|
|
|
2024-04-16 18:56:40 +00:00
|
|
|
kIconSuiteID_RollL = 138,
|
|
|
|
kIconSuiteID_RollR = 139,
|
|
|
|
kIconSuiteID_Roll = 140,
|
2024-04-16 03:43:29 +00:00
|
|
|
|
2024-04-16 18:56:40 +00:00
|
|
|
kIconSuiteID_SlideUp = 141,
|
|
|
|
kIconSuiteID_SlideDown = 142,
|
|
|
|
kIconSuiteID_SlideVert = 143,
|
2024-04-16 03:43:29 +00:00
|
|
|
|
2024-04-16 18:56:40 +00:00
|
|
|
kIconSuiteID_SlideRight = 144,
|
|
|
|
kIconSuiteID_SlideLeft = 145,
|
|
|
|
kIconSuiteID_SlideHorz = 146,
|
2024-04-16 03:43:29 +00:00
|
|
|
|
2024-04-16 18:56:40 +00:00
|
|
|
kIconSuiteID_Back = 147,
|
|
|
|
kIconSuiteID_Foward = 148,
|
|
|
|
kIconSuiteID_Thrust = 149,
|
2024-04-16 03:43:29 +00:00
|
|
|
|
2024-04-16 18:56:40 +00:00
|
|
|
kIconSuiteID_BankOn = 150,
|
|
|
|
kIconSuiteID_SlideOn = 151,
|
2024-04-16 03:43:29 +00:00
|
|
|
|
2024-04-16 18:56:40 +00:00
|
|
|
kIconSuiteID_UseCM = 152,
|
|
|
|
kIconSuiteID_NextCM = 153,
|
|
|
|
kIconSuiteID_PrevCM = 154,
|
2024-04-16 03:43:29 +00:00
|
|
|
|
2024-04-16 18:56:40 +00:00
|
|
|
kIconSuiteID_HeadLight = 155,
|
|
|
|
kIconSuiteID_Map = 156,
|
2024-04-16 03:43:29 +00:00
|
|
|
|
2024-04-16 18:56:40 +00:00
|
|
|
kIconSuiteID_UseInv = 157,
|
|
|
|
kIconSuiteID_NextInv = 158,
|
|
|
|
kIconSuiteID_PrevInv = 159,
|
2024-04-16 03:43:29 +00:00
|
|
|
|
2024-04-16 18:56:40 +00:00
|
|
|
kIconSuiteID_FirePrim = 160,
|
|
|
|
kIconSuiteID_FireSecond = 161,
|
|
|
|
kIconSuiteID_NextPrim = 162,
|
|
|
|
kIconSuiteID_NextSecond = 163,
|
|
|
|
kIconSuiteID_AfterBurn = 164,
|
|
|
|
kIconSuiteID_Flare = 165,
|
|
|
|
kIconSuiteID_RearView = 166,
|
|
|
|
|
|
|
|
kIconSuiteID_PrevPrim = 168,
|
|
|
|
kIconSuiteID_PrevSecond = 169
|
2024-04-16 03:43:29 +00:00
|
|
|
};
|
|
|
|
|
2024-04-16 18:56:40 +00:00
|
|
|
// setl
|
|
|
|
enum { kSetListID = 128 };
|
2024-04-16 03:43:29 +00:00
|
|
|
|
|
|
|
#endif /* __InSprocketResourcee__ */
|