[flatland-cvs] flatland/demo demo.h,1.3,1.4 simple.cpp,1.2,1.3
Status: Alpha
Brought to you by:
prideout
From: Philip R. <pri...@us...> - 2006-04-23 17:23:59
|
Update of /cvsroot/flatland/flatland/demo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21296/demo Modified Files: demo.h simple.cpp Log Message: - converted project to VStudio 2005 - added a #include to fix compilation problem (Joel Horne) - added to build instructions to refer to gl and wgl headers - added an item to the release procedure (add a news item) - fixed atan bug in flatland.cpp (gorchillo) - fixed line-ending problem in simple.cpp (gorchillo) - fixed virtual destructors (gorchillo) Index: demo.h =================================================================== RCS file: /cvsroot/flatland/flatland/demo/demo.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** demo.h 7 Mar 2005 00:27:36 -0000 1.3 --- demo.h 23 Apr 2006 17:23:50 -0000 1.4 *************** *** 58,61 **** --- 58,62 ---- public: Object() : properties(defaults) {} + virtual ~Object() {} virtual void Draw() const = 0; virtual Flatland::Object* GetObject() { return 0; } Index: simple.cpp =================================================================== RCS file: /cvsroot/flatland/flatland/demo/simple.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** simple.cpp 6 Mar 2005 14:48:05 -0000 1.2 --- simple.cpp 23 Apr 2006 17:23:50 -0000 1.3 *************** *** 1,5 **** // $Header$ // Summary: Very simple demo program for flatland. ! // Copyright: 2005 Philip Rideout. All rights reserved. // License: see bsd-license.txt #include <ode/ode.h> #include <SDL.h> --- 1,7 ---- // $Header$ // Summary: Very simple demo program for flatland. ! // Copyright: 2005 Philip Rideout. All rights reserved. ! // License: see bsd-license.txt ! #include <ode/ode.h> #include <SDL.h> |