code: moved project version related variables to project class

This commit is contained in:
itsmattkc
2022-01-06 12:50:40 -08:00
parent 8dbcbea891
commit 3960f54e9c
7 changed files with 14 additions and 8 deletions
+6
View File
@@ -32,6 +32,12 @@
namespace olive {
// This is the project version that Olive will save
const uint Project::kProjectVersion = 211228;
// This is the minimum project version that Olive can load
const uint Project::kProjectMinimumVersion = 210528;
Project::Project() :
is_modified_(false),
autorecovery_saved_(true)