Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/cvar.h')
-rw-r--r--src/core/cvar.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/cvar.h b/src/core/cvar.h
index 660f03e..205a416 100644
--- a/src/core/cvar.h
+++ b/src/core/cvar.h
@@ -8,6 +8,7 @@
#define __INCLUDED_CORE_CVAR_H__
#include <string>
+#include <map>
namespace core {
@@ -77,6 +78,9 @@ Cvar find(const char *name);
/// list the cvar registry
void list();
+/// the Cvar registry
+extern std::map<std::string, Cvar> registry;
+
} // namespace cvar
} // namespace core