view Renderer/test_render/demonstration.h @ 312:57530cb7f7d1

memMain tester
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 08 Jun 2009 23:19:11 +0900
parents 55ea4465b1a2
children
line wrap: on
line source

#ifndef INCLUDED_DEMONSTRATION
#define INCLUDED_DEMONSTRATION

#ifndef INCLUDED_POLYGON
#include "polygon.h"
#endif

class Demonstration{
 public:
  Polygon *list;
  void (Demonstration::*action_demo)();

  Demonstration();
  //~Demonstration();
  void test_init();
  void test_play();
  void test_end();
};

#endif