2010-12-28 01:53:15 +00:00
|
|
|
#include <nall/file.hpp>
|
|
|
|
#include <nall/foreach.hpp>
|
|
|
|
#include <nall/stdint.hpp>
|
|
|
|
#include <nall/string.hpp>
|
|
|
|
using namespace nall;
|
|
|
|
|
2010-12-30 07:18:47 +00:00
|
|
|
#include <ruby/ruby.hpp>
|
|
|
|
using namespace ruby;
|
|
|
|
|
2010-12-28 01:53:15 +00:00
|
|
|
#include <phoenix/phoenix.hpp>
|
|
|
|
using namespace phoenix;
|
|
|
|
|
2011-01-03 04:28:36 +00:00
|
|
|
#include <gameboy/gameboy.hpp>
|
2010-12-28 01:53:15 +00:00
|
|
|
|
|
|
|
#include "interface.hpp"
|
|
|
|
|
|
|
|
#include "general/main-window.hpp"
|
|
|
|
|
|
|
|
#include "utility/utility.hpp"
|
|
|
|
|
|
|
|
struct Application {
|
|
|
|
bool quit;
|
|
|
|
|
2010-12-30 07:18:47 +00:00
|
|
|
Font proportionalFont;
|
|
|
|
Font proportionalFontBold;
|
|
|
|
Font monospaceFont;
|
|
|
|
|
2010-12-28 01:53:15 +00:00
|
|
|
void main(int argc, char **argv);
|
|
|
|
};
|
|
|
|
|
|
|
|
extern Application application;
|