/*! \file proto_class.h \brief Definition of the proto class template, used quickly start work */ #ifndef _NULL_PARENT_H #define _NULL_PARENT_H #include "stdincl.h" #include "world_entity.h" class NullParent : public WorldEntity { public: NullParent (); NullParent (Vector* absCoordinate); ~NullParent (); virtual void update (float timeStamp); }; #endif /* _NULL_PARENT_H */