2010-05-26 09:54:30 -06:00
|
|
|
#ifndef DFHACK_API_H
|
2010-05-25 22:48:23 -06:00
|
|
|
#define DFHACK_API_H
|
|
|
|
|
2010-06-04 16:02:02 -06:00
|
|
|
// DFHack core classes and types
|
2010-05-25 22:48:23 -06:00
|
|
|
#include "dfhack/DFIntegers.h"
|
|
|
|
#include "dfhack/DFGlobal.h"
|
|
|
|
#include "dfhack/DFError.h"
|
|
|
|
#include "dfhack/DFContextManager.h"
|
|
|
|
#include "dfhack/DFContext.h"
|
|
|
|
#include "dfhack/DFMemInfo.h"
|
|
|
|
#include "dfhack/DFProcess.h"
|
|
|
|
#include "dfhack/DFTypes.h"
|
|
|
|
|
2010-06-04 16:02:02 -06:00
|
|
|
// DFHack modules
|
2010-05-26 00:42:09 -06:00
|
|
|
#include "dfhack/modules/Buildings.h"
|
|
|
|
#include "dfhack/modules/Materials.h"
|
|
|
|
#include "dfhack/modules/Position.h"
|
|
|
|
#include "dfhack/modules/Constructions.h"
|
|
|
|
#include "dfhack/modules/Creatures.h"
|
|
|
|
#include "dfhack/modules/Translation.h"
|
|
|
|
#include "dfhack/modules/World.h"
|
|
|
|
#include "dfhack/modules/Items.h"
|
|
|
|
#include "dfhack/modules/Vegetation.h"
|
|
|
|
#include "dfhack/modules/Maps.h"
|
2010-05-25 22:48:23 -06:00
|
|
|
|
2010-06-05 16:56:09 -06:00
|
|
|
/*
|
|
|
|
* This is a header full of ugly, volatile things.
|
|
|
|
* Only for use of official DFHack tools!
|
|
|
|
*/
|
2010-06-04 16:02:02 -06:00
|
|
|
#ifdef DFHACK_WANT_MISCUTILS
|
|
|
|
#include "dfhack/DFMiscUtils.h"
|
|
|
|
#endif
|
2010-06-05 16:56:09 -06:00
|
|
|
|
|
|
|
// define this to get the static tiletype->properties mapping
|
2010-06-04 16:02:02 -06:00
|
|
|
#ifdef DFHACK_WANT_TILETYPES
|
|
|
|
#include "dfhack/DFTileTypes.h"
|
|
|
|
#endif
|
2010-06-05 16:56:09 -06:00
|
|
|
#endif
|