From: <sv...@ww...> - 2005-12-10 17:54:37
|
Author: mkrose Date: 2005-12-10 09:54:27 -0800 (Sat, 10 Dec 2005) New Revision: 1742 Added: trunk/CSP/csp/cspsim/DamageModifier.cpp Removed: trunk/CSP/csp/cspsim/theater/DamageModifier.cpp Log: Move DamageModifier source to the correct directory (the header was already there). Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=1742 Copied: trunk/CSP/csp/cspsim/DamageModifier.cpp (from rev 1716, trunk/CSP/csp/cspsim/theater/DamageModifier.cpp) =================================================================== --- trunk/CSP/csp/cspsim/theater/DamageModifier.cpp 2005-12-04 21:17:37 UTC (rev 1716) +++ trunk/CSP/csp/cspsim/DamageModifier.cpp 2005-12-10 17:54:27 UTC (rev 1742) @@ -0,0 +1,39 @@ +// Combat Simulator Project +// Copyright (C) 2002 The Combat Simulator Project +// http://csp.sourceforge.net +// +// 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 2 +// 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, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + +/** + * @file DamageModifier.cpp + * + **/ + +#include <csp/cspsim/DamageModifier.h> +#include <csp/csplib/data/ObjectInterface.h> + +CSP_NAMESPACE + +CSP_XML_BEGIN(DamageModifier) + CSP_DEF("incediary", m_Incendiary, false) + CSP_DEF("high_explosive", m_HighExplosive, false) + CSP_DEF("penetrating", m_Penetrating, false) + CSP_DEF("armor_piercing", m_ArmorPiercing, false) + CSP_DEF("small_arms", m_SmallArms, false) +CSP_XML_END + +CSP_NAMESPACE_END + Deleted: trunk/CSP/csp/cspsim/theater/DamageModifier.cpp =================================================================== --- trunk/CSP/csp/cspsim/theater/DamageModifier.cpp 2005-12-06 07:20:34 UTC (rev 1741) +++ trunk/CSP/csp/cspsim/theater/DamageModifier.cpp 2005-12-10 17:54:27 UTC (rev 1742) @@ -1,39 +0,0 @@ -// Combat Simulator Project -// Copyright (C) 2002 The Combat Simulator Project -// http://csp.sourceforge.net -// -// 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 2 -// 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, write to the Free Software -// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - - -/** - * @file DamageModifier.cpp - * - **/ - -#include <csp/cspsim/theater/DamageModifier.h> -#include <csp/csplib/data/ObjectInterface.h> - -CSP_NAMESPACE - -CSP_XML_BEGIN(DamageModifier) - CSP_DEF("incediary", m_Incendiary, false) - CSP_DEF("high_explosive", m_HighExplosive, false) - CSP_DEF("penetrating", m_Penetrating, false) - CSP_DEF("armor_piercing", m_ArmorPiercing, false) - CSP_DEF("small_arms", m_SmallArms, false) -CSP_XML_END - -CSP_NAMESPACE_END - |