├── Config └── DefaultGunfireSaveSystem.ini ├── GunfireSaveSystem.uplugin ├── LICENSE.md ├── README.md ├── Resources └── Icon128.png └── Source └── GunfireSaveSystem ├── GunfireSaveSystem.Build.cs ├── GunfireSaveSystem.cpp ├── GunfireSaveSystem.h ├── PersistenceBlueprintFunctions.cpp ├── PersistenceBlueprintFunctions.h ├── PersistenceComponent.cpp ├── PersistenceComponent.h ├── PersistenceContainer.cpp ├── PersistenceContainer.h ├── PersistenceManager.cpp ├── PersistenceManager.h ├── PersistenceTypes.h ├── PersistenceUtils.cpp ├── PersistenceUtils.h ├── SaveGameArchive.cpp ├── SaveGameArchive.h ├── SaveGamePersistence.h ├── SaveGameProfile.h ├── SaveGameWorld.h ├── WindowsSaveGameSystem.cpp └── WindowsSaveGameSystem.h /Config/DefaultGunfireSaveSystem.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Config/DefaultGunfireSaveSystem.ini -------------------------------------------------------------------------------- /GunfireSaveSystem.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/GunfireSaveSystem.uplugin -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/GunfireSaveSystem.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/GunfireSaveSystem.Build.cs -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/GunfireSaveSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/GunfireSaveSystem.cpp -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/GunfireSaveSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/GunfireSaveSystem.h -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/PersistenceBlueprintFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/PersistenceBlueprintFunctions.cpp -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/PersistenceBlueprintFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/PersistenceBlueprintFunctions.h -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/PersistenceComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/PersistenceComponent.cpp -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/PersistenceComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/PersistenceComponent.h -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/PersistenceContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/PersistenceContainer.cpp -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/PersistenceContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/PersistenceContainer.h -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/PersistenceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/PersistenceManager.cpp -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/PersistenceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/PersistenceManager.h -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/PersistenceTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/PersistenceTypes.h -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/PersistenceUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/PersistenceUtils.cpp -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/PersistenceUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/PersistenceUtils.h -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/SaveGameArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/SaveGameArchive.cpp -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/SaveGameArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/SaveGameArchive.h -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/SaveGamePersistence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/SaveGamePersistence.h -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/SaveGameProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/SaveGameProfile.h -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/SaveGameWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/SaveGameWorld.h -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/WindowsSaveGameSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/WindowsSaveGameSystem.cpp -------------------------------------------------------------------------------- /Source/GunfireSaveSystem/WindowsSaveGameSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GunfireGames/GunfireSaveSystem/HEAD/Source/GunfireSaveSystem/WindowsSaveGameSystem.h --------------------------------------------------------------------------------