From 8b4a886d011fdce4563926893f6fd6ee3547d708 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Fri, 12 Feb 2021 02:42:03 -0500 Subject: [PATCH] Remove unused files idk where these came from, NUKE EM! --- zone/CMakeLists.txt | 1 - zone/lua_raid.cpp | 1 - zone/quest.cpp | 101 --------------------------- zone/quest.h | 47 ------------- zone/raid.h | 161 -------------------------------------------- 5 files changed, 311 deletions(-) delete mode 100644 zone/quest.cpp delete mode 100644 zone/quest.h delete mode 100644 zone/raid.h diff --git a/zone/CMakeLists.txt b/zone/CMakeLists.txt index 381123092..6b3c58e7d 100644 --- a/zone/CMakeLists.txt +++ b/zone/CMakeLists.txt @@ -247,7 +247,6 @@ SET(zone_headers quest_interface.h questmgr.h quest_parser_collection.h - raid.h raids.h raycast_mesh.h skills.h diff --git a/zone/lua_raid.cpp b/zone/lua_raid.cpp index ae01012d5..78f6bb1b6 100644 --- a/zone/lua_raid.cpp +++ b/zone/lua_raid.cpp @@ -4,7 +4,6 @@ #include #include -#include "raid.h" #include "masterentity.h" #include "lua_raid.h" #include "lua_entity.h" diff --git a/zone/quest.cpp b/zone/quest.cpp deleted file mode 100644 index fb2d9f851..000000000 --- a/zone/quest.cpp +++ /dev/null @@ -1,101 +0,0 @@ -/* EQEMu: Everquest Server Emulator - Copyright (C) 2001-2002 EQEMu Development Team (http://eqemu.org) - - 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; version 2 of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY except by those people which sell it, which - are required to give you total support for your newly bought product; - 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 -*/ -#include "../common/debug.h" -#include -#include -#include -#include - -// Disgrace: for windows compile -#ifdef WIN32 - #include - #define snprintf _snprintf -#else - #include "../common/unix.h" -#endif - -#include "quest.h" - -pquest_entry Quest::m_pQuests; -int Quest::m_nQuests; - -Quest::Quest() -{ - m_pQuests = NULL; - m_nQuests = 0; -} - -Quest::~Quest() -{ - for( int i=0;i