view example/cube/CubeSceneGraph.cpp @ 0:df32980116bd

Initial revision
author gongo
date Sat, 02 Feb 2008 19:15:39 +0900
parents
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);
}