server/src/game.pkg
Enno Rehling 6788d552cd remove parameters for old PRAY command.
Add an eressea.game module to Lua bindings.
2014-06-17 18:12:24 -07:00

13 lines
376 B
Text

$#include "config.h"
$#include "bind_eressea.h"
module eressea {
module game {
void eressea_free_game @ reset(void);
int eressea_read_game @ read(const char *filename);
int eressea_write_game @ write(const char *filename);
int eressea_export_json @ export(const char *filename, int flags);
int eressea_import_json @ import(const char *filename);
}
}