view ppe/TitleMove.h @ 19:632ce41a842a

testing game task with pad's input
author koba <koba@cr.ie.u-ryukyu.ac.jp>
date Thu, 26 Aug 2010 03:37:36 +0900
parents ccc811ee5f55
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; //8?
  double vx, vy; //8?
  int frame; //4
  const char *chara;
  int vital; //4
  int score; //4
  void *parent; 
  void *root;
  int flag;
  
} *ObjPropertyPtr, ObjProperty;

#endif