view Renderer/test_render/long_cube.cpp @ 283:55ea4465b1a2

fix test_render
author e065746@localhost.localdomain
date Fri, 05 Jun 2009 16:49:12 +0900
parents
children
line wrap: on
line source

#include "SceneGraphRoot.h"
#include "SGList.h"

// prototype
static void lcube_move(SceneGraphPtr node, int screen_w, int screen_h);
//static void lcube_collision(SceneGraphPtr node, int screen_w, int screen_h);


static void
lcube_move(SceneGraphPtr node, int screen_w, int screen_h)
{
}

static void
lcube_collision(SceneGraphPtr node, int screen_w, int screen_h,
	       SceneGraphPtr tree)
{
}


void
lcube_init(int screen_w, int screen_h)
{
    SceneGraphPtr lcube;

    sgroot->createFromXMLfile("xml_file/LongCube.xml");
    lcube = sgroot->createSceneGraph(LongCube);
    lcube->set_move_collision(lcube_move, lcube_collision);

    sgroot->setSceneData(lcube);
}