From 49c8aba627d0e33f0fd2abe3d74d2c564fff84e4 Mon Sep 17 00:00:00 2001 From: Andriy Shinkarchuck Date: Sun, 24 Jul 2011 18:49:36 +0300 Subject: [PATCH] things.h moved to repo. Added license notification --- things.h | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100755 things.h diff --git a/things.h b/things.h new file mode 100755 index 0000000..b93142f --- /dev/null +++ b/things.h @@ -0,0 +1,53 @@ +/*************************************************************************\ +* * +* Типы предметов в картах Doom'а 2D версии 1.22 alpha * +* * +* Prikol Software 28.VII.1996 * +* * +* Разрешается свободно распространять этот файл, при условии сохранения * +* ссылки на Prikol Software и даты выпуска файла. * +* * +\*************************************************************************/ +/* + Copyright (C) Prikol Software 1996-1997 + Copyright (C) Aleksey Volynskov 1996-1997 + Copyright (C) 2011 + + This file is part of the Doom2D:Rembo project. + + Doom2D:Rembo 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. + + Doom2D:Rembo 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 or + write to the Free Software Foundation, Inc., + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + +// флаги +#define THF_DIR 1 // направление: 1=вправо 0=влево +#define THF_DM 16 // появляется только в DeathMatch'е + +enum{TH_NONE=0, + TH_PLR1,TH_PLR2,TH_DMSTART, + TH_CLIP=100,TH_SHEL,TH_ROCKET,TH_CELL,TH_AMMO,TH_SBOX,TH_RBOX,TH_CELP, + TH_STIM,TH_MEDI,TH_BPACK, + TH_CSAW,TH_SGUN,TH_SGUN2,TH_MGUN,TH_LAUN,TH_PLAS,TH_BFG, + TH_ARM1,TH_ARM2,TH_MEGA,TH_INVL,TH_AQUA, + TH_RKEY,TH_GKEY,TH_BKEY, + TH_SUIT,TH_SUPER, + TH_RTORCH,TH_GTORCH,TH_BTORCH, + TH_GOR1,TH_FCAN, + TH_GUN2, + TH__LASTI, + TH_DEMON=200,TH_IMP,TH_ZOMBY,TH_SERG,TH_CYBER,TH_CGUN, + TH_BARON,TH_KNIGHT,TH_CACO,TH_SOUL,TH_PAIN,TH_SPIDER,TH_BSP, + TH_MANCUB,TH_SKEL,TH_VILE,TH_FISH,TH_BARREL,TH_ROBO,TH_MAN, + TH__LASTM +}; -- 2.29.2