view example/cube/CubeSceneGraph.cpp @ 68:35a6cf176c38

*** empty log message ***
author chiaki
date Sun, 17 Feb 2008 21:45:07 +0900
parents df32980116bd
children
line wrap: on
line source

#include "CubeSceneGraph.h"

CubeSceneGraph::CubeSceneGraph(char *xml)
{
    SceneGraph::SceneGraph(xml);
    task = new CubeTask();
}

void
CubeSceneGraph::update(CubeSceneGraph *old)
{
    task->update(old->data_pack, data_pack);
}