Update of /cvsroot/super-tux/supertux/lib/utils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9911/lib/utils
Modified Files:
configfile.h
Log Message:
Had a bit of time today and worked on supertux:
- Commited some old changes I had lying around here
(improved mrtree images? and improvement to the collision grid which still
isn't enabled by default)
- Did a bit more cleanups (eleminated defines.h and renamed scene.* to
player_status.* as that is waht ti really contained)
- Cleaned up PlayerStatus code a bit (refactored loading/saving out of worldmap
into PlayerStatus)
- Implemented LevelTransformer interface and did a first test with a flip level
transformer
- Removed explicit LevelEndSequence attribute (can be done by placing aprorpiate
SequenceTrigger objects)
Index: configfile.h
===================================================================
RCS file: /cvsroot/super-tux/supertux/lib/utils/configfile.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- configfile.h 28 Nov 2004 14:56:48 -0000 1.8
+++ configfile.h 25 Mar 2005 20:39:49 -0000 1.9
@@ -27,7 +27,9 @@
FILE * opendata(const std::string& filename, const char * mode);
class Config {
- public:
+public:
+ virtual ~Config()
+ { }
void load ();
void save ();
virtual void customload(const lisp::Lisp* )
|