#include "python_class.h"
#include <boost/version.hpp>
#include <boost/python.hpp>
#include "cmd/container.h"
#include "init.h"
#include "gfx/vec.h"
#include "cmd/unit_generic.h"
#include "universe_util.h"
#include "cmd/unit_util.h"
#include "faction_generic.h"
#include "cmd/ai/fire.h"
#include "star_system_exports.h"
#include <string>
Go to the source code of this file.
void StarSystemExports |
( |
) | |
|
Exports functions for python modules
Definition at line 19 of file universe_util_export.cpp.
21 #define EXPORT_UTIL( name, aff ) PYTHON_DEFINE_GLOBAL( VS, &UniverseUtil::name, #name );
22 #define voidEXPORT_UTIL( name ) EXPORT_UTIL( name, 0 )
24 #undef voidEXPORT_FACTION
25 #define EXPORT_FACTION( name, aff ) PYTHON_DEFINE_GLOBAL( VS, &FactionUtil::name, #name );
26 #define voidEXPORT_FACTION( name ) EXPORT_FACTION( name, 0 )