summaryrefslogtreecommitdiffstats
path: root/src/gltron.c
blob: 09185c551378d399abc3a5c0ea374724a9dce932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
  gltron
  Copyright (C) 1999 by Andreas Umbach <marvin@dataway.ch>
*/
#include "SDL.h"

#include "game/init.h"
#include "filesystem/path.h"
#include "base/util.h"
#include "SDL.h"

int main(int argc, char *argv[] ) {
	initSubsystems(argc, argv);
	runScript(PATH_SCRIPTS, "main.lua");
  return 0;
}