From 8ed662cd7b5191f0e3f45281bc41ff679ed2fd30 Mon Sep 17 00:00:00 2001 From: Dave Schuyler Date: Wed, 29 Dec 2004 04:07:40 +0000 Subject: [PATCH] *** empty log message *** --- panda/src/physics/test_physics.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/panda/src/physics/test_physics.cxx b/panda/src/physics/test_physics.cxx index f9f7f374e9..5c2f182100 100644 --- a/panda/src/physics/test_physics.cxx +++ b/panda/src/physics/test_physics.cxx @@ -24,12 +24,12 @@ class Baseball : public Physical { public: int ttl_balls; - int color; + //int color; Baseball(int tb = 1) : ttl_balls(tb), Physical(tb, true) {} }; -int main(int, char **) { +int main(int argc, char **argv) { PhysicsManager physics_manager; Baseball b(8); @@ -87,5 +87,7 @@ int main(int, char **) { cout << "vel: " << (*co)->get_velocity() << " "; cout << "pos: " << (*co)->get_position() << endl; } + + return 0; }