view TaskManager/Test/test_render/task/Move.h @ 408:edfde944672a

add Move, Draw, ChainMove
author game@henri.cr.ie.u-ryukyu.ac.jp
date Wed, 23 Sep 2009 14:38:38 +0900
parents
children dd2ab68e4036
line wrap: on
line source

#ifndef INCLUDED_TASK_MOVE
#define INCLUDED_TASK_MOVE

#include "SchedTask.h"

class Move : public SchedTask {
public:
    SchedConstructor(Move);

    int run(void *rbuf, void *wbuf);

};

#endif