Load version cache file
| 53 | |
| 54 | // Load version cache file |
| 55 | struct VersionCache |
| 56 | { |
| 57 | // When changing this ensure that Flax Launcher properly reads the version |
| 58 | int32 Major = FLAXENGINE_VERSION_MAJOR; |
| 59 | int32 Minor = FLAXENGINE_VERSION_MINOR; |
| 60 | int32 Build = FLAXENGINE_VERSION_BUILD; |
| 61 | int32 RealSize = sizeof(Real); // Rebuild when changing between Large Worlds |
| 62 | }; |
| 63 | VersionCache lastVersion; |
| 64 | if (FileSystem::FileExists(versionFilePath)) |
| 65 | { |