jkxr/Projects/Android/jni/OpenJK/code/game/hitlocs.h
Simon 4597b03873 Initial Commit
Opens in Android Studio but haven't even tried to build it yet (it won't.. I know that much!)
2022-09-18 16:37:21 +01:00

57 lines
1.3 KiB
C

/*
===========================================================================
Copyright (C) 2000 - 2013, Raven Software, Inc.
Copyright (C) 2001 - 2013, Activision, Inc.
Copyright (C) 2013 - 2015, OpenJK contributors
This file is part of the OpenJK source code.
OpenJK is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
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 HITLOCS_H
#define HITLOCS_H
enum //# hitloc_e
{
HL_NONE = 0,
HL_FOOT_RT,
HL_FOOT_LT,
HL_LEG_RT,
HL_LEG_LT,
HL_WAIST,
HL_BACK_RT,
HL_BACK_LT,
HL_BACK,
HL_CHEST_RT,
HL_CHEST_LT,
HL_CHEST,
HL_ARM_RT,
HL_ARM_LT,
HL_HAND_RT,
HL_HAND_LT,
HL_HEAD,
HL_GENERIC1,
HL_GENERIC2,
HL_GENERIC3,
HL_GENERIC4,
HL_GENERIC5,
HL_GENERIC6,
//# #eol
HL_MAX
};
extern stringID_table_t HLTable[];
#endif // #ifndef HITLOCS_H