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