pingus-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pingus-CVS] CVS: Games/Pingus/src/actions angel.cxx,1.4,1.5 blocker.hxx


From: torangan
Subject: [Pingus-CVS] CVS: Games/Pingus/src/actions angel.cxx,1.4,1.5 blocker.hxx,1.4,1.5 bomber.cxx,1.3,1.4 bridger.cxx,1.7,1.8 digger.cxx,1.5,1.6 faller.cxx,1.12,1.13 faller.hxx,1.6,1.7 jumper.cxx,1.4,1.5 rocket_launcher.cxx,1.2,1.3 superman.cxx,1.1,1.2 superman.hxx,1.4,1.5 walker.cxx,1.13,1.14
Date: 2 Jul 2002 13:36:08 -0000

Update of /usr/local/cvsroot/Games/Pingus/src/actions
In directory dark:/tmp/cvs-serv28222/actions

Modified Files:
        angel.cxx blocker.hxx bomber.cxx bridger.cxx digger.cxx 
        faller.cxx faller.hxx jumper.cxx rocket_launcher.cxx 
        superman.cxx superman.hxx walker.cxx 
Log Message:
some cleanup


Index: angel.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/angel.cxx,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- angel.cxx   21 Jun 2002 08:11:27 -0000      1.4
+++ angel.cxx   2 Jul 2002 13:36:06 -0000       1.5
@@ -17,7 +17,6 @@
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-#include <math.h>
 #include "../pingu.hxx"
 #include "../pingus_resource.hxx"
 #include "../string_converter.hxx"

Index: blocker.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/blocker.hxx,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- blocker.hxx 28 Jun 2002 15:12:22 -0000      1.4
+++ blocker.hxx 2 Jul 2002 13:36:06 -0000       1.5
@@ -20,9 +20,8 @@
 #ifndef HEADER_PINGUS_ACTIONS_BLOCKER_HXX
 #define HEADER_PINGUS_ACTIONS_BLOCKER_HXX
 
+#include "../sprite.hxx"
 #include "../pingu_action.hxx"
-
-class Sprite;
 
 ///
 class Blocker : public PinguAction

Index: bomber.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/bomber.cxx,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- bomber.cxx  26 Jun 2002 15:38:44 -0000      1.3
+++ bomber.cxx  2 Jul 2002 13:36:06 -0000       1.4
@@ -21,7 +21,6 @@
 #include "../col_map.hxx"
 #include "../world.hxx"
 #include "../globals.hxx"
-#include "../algo.hxx"
 #include "../pingus_resource.hxx"
 #include "../force_vector.hxx"
 #include "../string_converter.hxx"

Index: bridger.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/bridger.cxx,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- bridger.cxx 28 Jun 2002 15:12:22 -0000      1.7
+++ bridger.cxx 2 Jul 2002 13:36:06 -0000       1.8
@@ -23,7 +23,6 @@
 #include "../pingus_resource.hxx"
 #include "../sound.hxx"
 #include "../algo.hxx"
-#include "../action_holder.hxx"
 #include "../col_map.hxx"
 #include "../string_converter.hxx"
 #include "../pingu.hxx"

Index: digger.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/digger.cxx,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- digger.cxx  28 Jun 2002 15:12:22 -0000      1.5
+++ digger.cxx  2 Jul 2002 13:36:06 -0000       1.6
@@ -24,8 +24,6 @@
 #include "../world.hxx"
 #include "../pingus_resource.hxx"
 #include "../sound.hxx"
-#include "../particles/ground_particle.hxx"
-#include "../algo.hxx"
 #include "../string_converter.hxx"
 #include "../pingu.hxx"
 #include "digger.hxx"

Index: faller.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/faller.cxx,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- faller.cxx  28 Jun 2002 18:11:10 -0000      1.12
+++ faller.cxx  2 Jul 2002 13:36:06 -0000       1.13
@@ -17,14 +17,9 @@
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-#include <math.h>
-#include "../action_holder.hxx"
 #include "../col_map.hxx"
-#include "../pingu_map.hxx"
 #include "../globals.hxx"
-#include "../sprite.hxx"
 #include "../force_vector.hxx"
-#include "../world.hxx"
 #include "../string_converter.hxx"
 #include "../pingu.hxx"
 #include "../debug.hxx"

Index: faller.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/faller.hxx,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- faller.hxx  28 Jun 2002 15:12:22 -0000      1.6
+++ faller.hxx  2 Jul 2002 13:36:06 -0000       1.7
@@ -20,8 +20,8 @@
 #ifndef HEADER_PINGUS_ACTIONS_FALLER_HXX
 #define HEADER_PINGUS_ACTIONS_FALLER_HXX
 
+#include "../sprite.hxx"
 #include "../pingu_action.hxx"
-
 
 class Faller : public PinguAction
 {

Index: jumper.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/jumper.cxx,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- jumper.cxx  28 Jun 2002 15:12:22 -0000      1.4
+++ jumper.cxx  2 Jul 2002 13:36:06 -0000       1.5
@@ -18,7 +18,6 @@
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 #include "../pingu.hxx"
-#include "../pingus_resource.hxx"
 #include "../string_converter.hxx"
 #include "jumper.hxx"
 

Index: rocket_launcher.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/rocket_launcher.cxx,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- rocket_launcher.cxx 28 Jun 2002 15:12:22 -0000      1.2
+++ rocket_launcher.cxx 2 Jul 2002 13:36:06 -0000       1.3
@@ -17,9 +17,7 @@
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-#include "../pingu_map.hxx"
 #include "../particles/particle_holder.hxx"
-#include "../col_map.hxx"
 #include "../particles/explosive_particle.hxx"
 #include "../world.hxx"
 #include "../string_converter.hxx"

Index: superman.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/superman.cxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- superman.cxx        12 Jun 2002 19:01:42 -0000      1.1
+++ superman.cxx        2 Jul 2002 13:36:06 -0000       1.2
@@ -19,7 +19,6 @@
 
 #include "../pingu.hxx"
 #include "../pingus_resource.hxx"
-#include "../sprite.hxx"
 #include "../string_converter.hxx"
 #include "superman.hxx"
 

Index: superman.hxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/superman.hxx,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- superman.hxx        28 Jun 2002 15:12:23 -0000      1.4
+++ superman.hxx        2 Jul 2002 13:36:06 -0000       1.5
@@ -20,6 +20,7 @@
 #ifndef HEADER_PINGUS_ACTIONS_SUPERMAN_HXX
 #define HEADER_PINGUS_ACTIONS_SUPERMAN_HXX
 
+#include "../sprite.hxx"
 #include "../pingu_action.hxx"
 
 class Superman : public PinguAction

Index: walker.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/actions/walker.cxx,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- walker.cxx  28 Jun 2002 18:11:10 -0000      1.13
+++ walker.cxx  2 Jul 2002 13:36:06 -0000       1.14
@@ -17,10 +17,7 @@
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-#include "../pingu_map.hxx"
-#include "../action_holder.hxx"
 #include "../col_map.hxx"
-#include "../world.hxx"
 #include "../globals.hxx"
 #include "../string_converter.hxx"
 #include "../pingu.hxx"




reply via email to

[Prev in Thread] Current Thread [Next in Thread]