updated main/Scene module a tad

git-svn-id: svn://anubis/fart/trunk@21 7f9b0f55-74a9-4bce-be96-3c2cd072584d
This commit is contained in:
Josh Holtrop 2009-01-20 22:35:44 +00:00
parent a52733c996
commit f143245c53
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#include "Scene.h"
void Scene::render()
{
}

View File

@ -4,6 +4,10 @@
class Scene
{
public:
void render();
private:
};
#endif