17 lines
195 B
C
Raw Normal View History

2013-09-21 23:05:25 +02:00
#ifndef __MAIN_H__
#define __MAIN_H__
#include "exceptions.h"
#include "screen.h"
#include "resources.h"
#include "random.h"
extern Screen screen;
extern Random rndGen;
void menu();
#endif