00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef __DEPENDENCIES_H__
00017 #define __DEPENDENCIES_H__
00018
00019
00020
00021 #include "config.h"
00022
00023
00024 #include <assert.h>
00025 #include <stddef.h>
00026
00027
00028 #include <fstream>
00029 #include <iostream>
00030 #include <map>
00031 #include <string>
00032 #include <sstream>
00033 #include <typeinfo>
00034 #include <vector>
00035
00036
00037 #include <irrlicht.h>
00038
00039
00040 #ifdef __COMPILE_WITH_ANGELSCRIPT__
00041
00042 #include <angelscript.h>
00043
00044 #endif
00045
00046
00047 #include <sigslot/sigslot.h>
00048
00049
00050 #ifdef __COMPILE_WITH_SFML_AUDIO__
00051
00052 #include <SFML/System.hpp>
00053 #include <SFML/Audio.hpp>
00054
00055 #endif
00056
00057
00058
00059
00060 using namespace std;
00061
00062
00063 using namespace irr;
00064 using namespace core;
00065 using namespace scene;
00066 using namespace video;
00067 using namespace io;
00068 using namespace gui;
00069
00070 #endif