view ppe/TitleMove.h @ 4:ccc811ee5f55

property add.
author tkaito
date Mon, 21 Jun 2010 03:23:55 +0900
parents 7dc2d920fc7c
children 632ce41a842a
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;
  int frame;
  const char *chara;
  int vital;
  int score;
  int remove;
  void *parent;
  void *root;
  
} *ObjPropertyPtr, ObjProperty;


#endif