From 5f6dad55d75cbe146ff7fefc899a02ccd39078ba Mon Sep 17 00:00:00 2001 From: Treeki Date: Thu, 7 Oct 2010 15:56:13 +0200 Subject: initial commit -- everything compiles except for material.cpp. the material system still needs quite a bit of work; this will come in due time --- main.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 main.cpp (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..42a6c01 --- /dev/null +++ b/main.cpp @@ -0,0 +1,21 @@ +#include +#include "lsmainwindow.h" +#include "lsglobals.h" + +#include "lyt/directorypackage.h" +#include "lyt/layout.h" + + +int main(int argc, char *argv[]) { + QApplication a(argc, argv); + + LSGlobals::setup(); + + LYTDirectoryPackage package("H:\\ISOs\\NSMBWii\\Extracted\\Layout\\continue\\continue\\arc"); + LYTLayout layout(package, "continue_05.brlyt"); + + LSMainWindow w; + w.show(); + + return a.exec(); +} -- cgit v1.2.3