Exemple #1
0
void Instance::printInfo(void)
{
	cout << id << ", "
	     << name << ", "
	     << interior << ", "
	     << position.x << ", "
	     << position.y << ", "
	     << position.z << ", "
	     << scale.x << ", "
	     << scale.y << ", "
	     << scale.z << ", "
	     << rotation.x << ", "
	     << rotation.y << ", "
	     << rotation.z << ", "
	     << rotation.w << endl;
	WorldObject *op = static_cast<WorldObject*>(objectList->get(id));
	op->printInfo();
}