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 <assert.h>
00022 #include <stddef.h>
00023
00024
00025 #include <fstream>
00026 #include <iostream>
00027 #include <map>
00028 #include <string>
00029 #include <sstream>
00030 #include <typeinfo>
00031 #include <vector>
00032
00033
00034 #include <irrlicht.h>
00035
00036
00037 #include <angelscript.h>
00038
00039
00040 #include <sigslot/sigslot.h>
00041
00042
00043 #include <SFML/System.hpp>
00044 #include <SFML/Audio.hpp>
00045
00046
00047
00048
00049 using namespace std;
00050
00051
00052 using namespace irr;
00053 using namespace core;
00054 using namespace scene;
00055 using namespace video;
00056 using namespace io;
00057 using namespace gui;
00058
00059 #endif