blender/intern/itasc/WorldObject.cpp
Guillermo S. Romero 5eb2b4b40d SVN maintenance.
2009-09-25 01:13:07 +00:00

27 lines
379 B
C++

/* $Id$
* WorldObject.cpp
*
* Created on: Feb 10, 2009
* Author: benoitbolsee
*/
#include "WorldObject.hpp"
namespace iTaSC{
/* special singleton to be used as base for uncontrolled object */
WorldObject Object::world;
WorldObject::WorldObject():UncontrolledObject()
{
initialize(0,1);
m_internalPose = Frame::Identity();
}
WorldObject::~WorldObject()
{
}
}