diff options
author | RichieSams | 2013-09-06 22:47:49 -0500 |
---|---|---|
committer | RichieSams | 2013-09-06 22:50:42 -0500 |
commit | e92e3c5b0b59869a78a41fe1013ed73ab6ac59fe (patch) | |
tree | 42ffade6d19d64b1ae9ad3a0384a98a1306775da | |
parent | 2840ce750eee4409dc4926d57dbe686640cac625 (diff) | |
download | scummvm-rg350-e92e3c5b0b59869a78a41fe1013ed73ab6ac59fe.tar.gz scummvm-rg350-e92e3c5b0b59869a78a41fe1013ed73ab6ac59fe.tar.bz2 scummvm-rg350-e92e3c5b0b59869a78a41fe1013ed73ab6ac59fe.zip |
ZVISION: Delete action_node
-rw-r--r-- | engines/zvision/action_node.cpp | 33 | ||||
-rw-r--r-- | engines/zvision/action_node.h | 36 | ||||
-rw-r--r-- | engines/zvision/actions.cpp | 1 | ||||
-rw-r--r-- | engines/zvision/module.mk | 1 | ||||
-rw-r--r-- | engines/zvision/script_manager.cpp | 1 |
5 files changed, 0 insertions, 72 deletions
diff --git a/engines/zvision/action_node.cpp b/engines/zvision/action_node.cpp deleted file mode 100644 index eeb8930924..0000000000 --- a/engines/zvision/action_node.cpp +++ /dev/null @@ -1,33 +0,0 @@ -/* ScummVM - Graphic Adventure Engine - * - * ScummVM is the legal property of its developers, whose names - * are too numerous to list here. Please refer to the COPYRIGHT - * file distributed with this source distribution. - * - * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - * - */ - -#include "common/scummsys.h" - -#include "zvision/action_node.h" -#include "zvision/zvision.h" -#include "zvision/script_manager.h" - -namespace ZVision { - - - -} // End of namespace ZVision diff --git a/engines/zvision/action_node.h b/engines/zvision/action_node.h deleted file mode 100644 index c9beb7b38e..0000000000 --- a/engines/zvision/action_node.h +++ /dev/null @@ -1,36 +0,0 @@ -/* ScummVM - Graphic Adventure Engine - * - * ScummVM is the legal property of its developers, whose names - * are too numerous to list here. Please refer to the COPYRIGHT - * file distributed with this source distribution. - * - * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - * - */ - -#ifndef ZVISION_ACTION_NODE_H -#define ZVISION_ACTION_NODE_H - -#include "common/types.h" - -#include "zvision/control.h" - -namespace ZVision { - - - -} // End of namespace ZVision - -#endif diff --git a/engines/zvision/actions.cpp b/engines/zvision/actions.cpp index 4c532ebf9d..2a0a72be20 100644 --- a/engines/zvision/actions.cpp +++ b/engines/zvision/actions.cpp @@ -30,7 +30,6 @@ #include "zvision/zvision.h" #include "zvision/script_manager.h" #include "zvision/render_manager.h" -#include "zvision/action_node.h" #include "zvision/zork_raw.h" #include "zvision/zork_avi_decoder.h" #include "zvision/timer_node.h" diff --git a/engines/zvision/module.mk b/engines/zvision/module.mk index c8c60ca8ce..c916ab81d3 100644 --- a/engines/zvision/module.mk +++ b/engines/zvision/module.mk @@ -1,7 +1,6 @@ MODULE := engines/zvision MODULE_OBJS := \ - action_node.o \ actions.o \ animation.o \ clock.o \ diff --git a/engines/zvision/script_manager.cpp b/engines/zvision/script_manager.cpp index 860697c61e..0af1ff131a 100644 --- a/engines/zvision/script_manager.cpp +++ b/engines/zvision/script_manager.cpp @@ -33,7 +33,6 @@ #include "zvision/cursor_manager.h" #include "zvision/save_manager.h" #include "zvision/actions.h" -#include "zvision/action_node.h" #include "zvision/utility.h" namespace ZVision { |