13 lines
271 B
C++
13 lines
271 B
C++
#pragma once
|
|
|
|
#include <string> // for string
|
|
struct options_t;
|
|
|
|
// Variables
|
|
extern options_t options;
|
|
|
|
// Carga el fichero de configuración
|
|
bool loadOptionsFile(std::string filePath);
|
|
|
|
// Guarda el fichero de configuración
|
|
bool saveOptionsFile(std::string filePath); |