From 825d5a44bd312772c53fdaa8924e4009cfb320a3 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 10 Feb 2008 17:54:53 +0000 Subject: more entity updates --- src/core/entity.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/core/entity.cc') diff --git a/src/core/entity.cc b/src/core/entity.cc index 7f23213..3854fd0 100644 --- a/src/core/entity.cc +++ b/src/core/entity.cc @@ -18,7 +18,12 @@ Entity::Entity(unsigned int entity_flags, unsigned int entity_type) flags = entity_flags; type = entity_type; + base_shape = entity::Diamond; + base_color = math::Color(1.0f, 1.0f, 1.0f); + base_radius = 1.0f; + core::entity::add(this); + } Entity::~Entity() @@ -86,7 +91,7 @@ void list() std::vector::iterator it; for (it=registry.begin(); it != registry.end(); it++) { con_print << " id " << std::setw(3) << (*it)->id - << " type " << std::setw(2) << (*it)->type + << " type " << std::setw(3) << (*it)->type << " " << (*it)->label << std::endl; } con_print << registry.size() << " registered entities" << std::endl; -- cgit v1.2.3