Mercurial > hg > Members > kono > Cerium
view Renderer/Engine/Application.h @ 992:1b018a00cd17
task/DataAllocate.cc is changed for fifo64.
author | tkaito |
---|---|
date | Mon, 11 Oct 2010 19:42:28 +0900 |
parents | 50220f219341 |
children | 431936c0cc96 |
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