00001 #ifndef __DUSTY_MOVE_INTERPOLATED_TASK_H__
00002 #define __DUSTY_MOVE_INTERPOLATED_TASK_H__
00003
00004 #include "dustyengine.h"
00005
00006 namespace DustyEngine
00007 {
00008 class VectorInterpolatedTask;
00009 class NodeAffector;
00010
00012 class DUSTYENGINE_API MoveInterpolatedTask : public VectorInterpolatedTask, public NodeAffector
00013 {
00014 public:
00015 MoveInterpolatedTask();
00016
00017 virtual ~MoveInterpolatedTask();
00018
00019 void OnUpdate();
00020
00021 protected:
00022
00023 };
00024 }
00025
00026 #endif
00027