mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-12-02 09:02:09 +00:00
58 lines
1.3 KiB
C
58 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
|