Mercurial > hg > Game > Cerium
view Renderer/Engine/Application.h @ 542:109a33b72b10 draft
continue...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 12 Oct 2009 15:48:40 +0900 |
parents | 3bc98f6d31ff |
children | 0c53fa91602f |
line wrap: on
line source
#ifndef INCLUDED_APPLICATION #define INCLUDED_APPLICATION #include "SceneGraph.h" class Viewer; typedef void (*Move_func)(SceneGraph* node, int screen_w, int screen_h); typedef void (*Coll_func)(SceneGraph* node, int screen_w, int screen_h, SceneGraphPtr tree); class Application { public: Application(); virtual ~Application(); virtual void init(Viewer *viewer, int w, int h) = 0; }; #endif