view main.cc @ 115:31dd5c07f7c1

class OBJECT:SceanGraph
author e085768
date Wed, 15 Jun 2011 23:31:59 +0900
parents c534f339ee8b
children
line wrap: on
line source

#include <stdio.h>
#include "game.h"
#include "libps2.h"
#include "ps2util.h"

FILE *main_fp;

int
main(int argc, char* argv[])
{
  main_fp = fopen("/dev/stdout", "w");
  if (!main_fp) {
    perror("main");
  }

  game_main();
  ps2util_graphic_Finish();
  return 0;
}