2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-20 04:25:23 +00:00

Make window size and position persistent

This commit is contained in:
2023-10-27 14:32:36 -07:00
parent c0e405cd55
commit a6392ab822
7 changed files with 87 additions and 4 deletions

View File

@@ -37,6 +37,10 @@ public:
CVarManager(FileStoreManager& store, bool useBinary = false);
~CVarManager();
CVar* newCVar(std::string_view name, std::string_view help, const zeus::CVector2i& value, CVar::EFlags flags) {
return _newCVar<const zeus::CVector2i>(name, help, value, flags);
}
CVar* newCVar(std::string_view name, std::string_view help, const zeus::CVector2f& value, CVar::EFlags flags) {
return _newCVar<const zeus::CVector2f>(name, help, value, flags);
}