2011-12-24 03:51:58 -07:00
|
|
|
#include "Internal.h"
|
|
|
|
#include "dfhack/DataDefs.h"
|
2011-12-24 05:22:10 -07:00
|
|
|
#include "dfhack/MiscUtils.h"
|
|
|
|
|
|
|
|
#include "dfhack/df/world.h"
|
|
|
|
#include "dfhack/df/world_data.h"
|
|
|
|
#include "dfhack/df/ui.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
template<class T>
|
|
|
|
inline T &_toref(T &r) { return r; }
|
|
|
|
template<class T>
|
|
|
|
inline T &_toref(T *&p) { return *p; }
|
|
|
|
}
|
2011-12-24 03:51:58 -07:00
|
|
|
|
|
|
|
// Instantiate all the static objects
|
|
|
|
#include "dfhack/df/static.inc"
|