view Renderer/Test_/demonstration.h @ 4:b5b462ac9b3b

Cerium Blender ball_bound
author Daiki KINJYO <e085722@ie.u-ryukyu.ac.jp>
date Mon, 29 Nov 2010 16:42:42 +0900
parents
children
line wrap: on
line source

#ifndef INCLUDED_DEMONSTRATION
#define INCLUDED_DEMONSTRATION

#include "polygon.h"

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

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

#endif