18 lines
375 B
C
18 lines
375 B
C
//
|
|
// Created by rov on 12/26/25.
|
|
//
|
|
|
|
#ifndef TIBIA_CONFIG_H
|
|
#define TIBIA_CONFIG_H
|
|
|
|
typedef struct ConfigParams {
|
|
char serverAddress[100];
|
|
long serverPort;
|
|
char lastAccount[30];
|
|
char lastPassword[30];
|
|
} ConfigParams_t;
|
|
|
|
void Config_Load_Settings(ConfigParams_t* configParams);
|
|
void Config_Save_Settings(ConfigParams_t* configParams);
|
|
|
|
#endif //TIBIA_CONFIG_H
|