view greenclab.cc @ 6:581fa1888e2e

add bullet
author tkaito
date Mon, 07 Jun 2010 18:58:59 +0900
parents 57af5c610b34
children
line wrap: on
line source

#include "game_scene01.h"

void 
gclab_move(SceneGraphPtr node, void *sgroot_, int w, int h)
{
  node->xyz[1] += 1;
  if (node->xyz[1] > h) {
    node->remove();
  }
}

void 
gclab_collision(SceneGraphPtr node, void *sgroot_, int w, int h, SceneGraphPtr tree)
{
}