view example/cube/CubeSceneGraph.cpp @ 602:1733f3cbfa28

64bit mode try... not worked.
author e075740@nw0740.st.ie.u-ryukyu.ac.jp
date Fri, 06 Nov 2009 21:20:26 +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);
}