- "Info" ara es una unitat simple

This commit is contained in:
2024-01-29 14:52:53 +01:00
parent aca0f646b3
commit 80234e195e
11 changed files with 56 additions and 62 deletions

14
info.h
View File

@@ -21,10 +21,10 @@
#define PERSONATGE_ROSITA 1
#define PERSONATGE_JOB 2
struct Info {
int estat_joc;
bool rosita_enabled;
bool job_enabled;
int dificultat;
int personatge;
};
namespace info{
extern int estat_joc;
extern bool rosita_enabled;
extern bool job_enabled;
extern int dificultat;
extern int personatge;
}