view spe/Move00.h @ 30:14f2ef87f9f2 default tip

remove unnecessary files
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Fri, 10 Dec 2010 11:29:41 +0900
parents c015109a6041
children
line wrap: on
line source

#ifndef INCLUDED_TASK_HELLO
#define INCLUDED_TASK_HELLO

#ifndef INCLUDED_SCHED_TASK
#  include "SchedTask.h"
#endif
/*
class Twice : public SchedTask {
public:
    SchedConstructor(Twice);
    
    int run(void *r, void *w);
};
 */

typedef struct {
  double x, y;
  double vx, vy;
  const char *chara;
  int vital;
  int score;
  int remove;
  void *parent;
  void *root;
  
} *ObjPropertyPtr, ObjProperty;


#endif