view example/scenegraph/xml/task/collision.h @ 539:3bc98f6d31ff draft

Reorganization..
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 12 Oct 2009 09:39:35 +0900
parents 628cb162be88
children
line wrap: on
line source

#ifndef INCLUDED_CREATE_POLYGON
#define INCLUDED_CREATE_POLYGON

#ifndef INCLUDED_SCHED_TASK
#  include "SchedTask.h"
#endif

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

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

#endif