mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-20 13:15:16 -04:00
27 lines
482 B
C
27 lines
482 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
|
|
void (*short_help)();
|
|
void (*show_error)(const char *text);
|
|
|
|
const char *adventure_path;
|
|
const char *config_path;
|
|
const char *lang_path;
|
|
const char *patch_file;
|
|
|
|
const char *sse_hostport;
|
|
|
|
} SKELDAL_CONFIG;
|
|
|
|
int skeldal_entry_point(const SKELDAL_CONFIG *cfg);
|
|
int skeldal_gen_string_table_entry_point(const SKELDAL_CONFIG *cfg, const char *save_path);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|