view Renderer/Engine/scene.h @ 1963:6988e5478a8c draft

fix CudaScheduler
author Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
date Wed, 12 Feb 2014 17:56:40 +0900
parents 3bc98f6d31ff
children
line wrap: on
line source

#ifndef INCLUDED_SCENE
#define INCLUDED_SCENE

#include "polygon.h"

class Scene{
 public:
  Polygon *list;
  Demonstration *demo;
  void (Scene::*action_scene)();

  Scene();
  void title_init();
  void title();
  void title_end();
};

#endif