Mercurial > hg > Game > Cerium
view Renderer/Engine/Application.h @ 649:026e9e7f1402 draft
MailManager Fifo fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 22 Nov 2009 18:53:05 +0900 |
parents | 0c53fa91602f |
children | 7a311860a76e |
line wrap: on
line source
#ifndef INCLUDED_APPLICATION #define INCLUDED_APPLICATION #include "SceneGraph.h" #include "MainLoop.h" #include "viewer.h" 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 Viewer; class Application { public: Application(); virtual ~Application(); virtual MainLoopPtr init(Viewer *viewer, int w, int h) = 0; }; #endif