├── .gitignore ├── Config └── FilterPlugin.ini ├── Documentation └── gameDNAinstaller_UserGuide.pdf ├── Extras └── Core │ ├── SharpCompress.dll │ └── gameDNAinstaller.exe ├── LICENSE ├── README.md ├── Resources ├── Fonts │ ├── Lato-Black.ttf │ ├── Lato-Bold.ttf │ └── Lato-Regular.ttf ├── Graphics │ ├── gameDNAinstaller_icon.png │ └── gameDNAinstaller_logo.png ├── Icon128.png ├── Installation1.png ├── Installation2.png ├── Installation3.png ├── Installation4.png └── Splash.png ├── Source └── gameDNAinstaller │ ├── Private │ ├── GameDNAinstaller.cpp │ ├── GameDNAinstallerCommands.cpp │ ├── GameDNAinstallerCore.cpp │ ├── GameDNAinstallerSave.cpp │ ├── GameDNAinstallerStyle.cpp │ ├── SGameDNAinstallerConsole.cpp │ ├── SGameDNAinstallerMarshaller.cpp │ └── SGameDNAinstallerPluginEntry.cpp │ ├── Public │ ├── GameDNAinstaller.h │ ├── GameDNAinstallerCommands.h │ ├── GameDNAinstallerCore.h │ ├── GameDNAinstallerSave.h │ ├── GameDNAinstallerStyle.h │ ├── GameDNAinstallerTypes.h │ ├── SGameDNAinstallerConsole.h │ ├── SGameDNAinstallerMarshaller.h │ └── SGameDNAinstallerPluginEntry.h │ └── gameDNAinstaller.Build.cs └── gameDNAinstaller.uplugin /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/FilterPlugin.ini: -------------------------------------------------------------------------------- 1 | [FilterPlugin] 2 | /Documentation/ 3 | /Extras/ 4 | -------------------------------------------------------------------------------- /Documentation/gameDNAinstaller_UserGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Documentation/gameDNAinstaller_UserGuide.pdf -------------------------------------------------------------------------------- /Extras/Core/SharpCompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Extras/Core/SharpCompress.dll -------------------------------------------------------------------------------- /Extras/Core/gameDNAinstaller.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Extras/Core/gameDNAinstaller.exe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Fonts/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Resources/Fonts/Lato-Black.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Resources/Fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Resources/Fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /Resources/Graphics/gameDNAinstaller_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Resources/Graphics/gameDNAinstaller_icon.png -------------------------------------------------------------------------------- /Resources/Graphics/gameDNAinstaller_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Resources/Graphics/gameDNAinstaller_logo.png -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Resources/Installation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Resources/Installation1.png -------------------------------------------------------------------------------- /Resources/Installation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Resources/Installation2.png -------------------------------------------------------------------------------- /Resources/Installation3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Resources/Installation3.png -------------------------------------------------------------------------------- /Resources/Installation4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Resources/Installation4.png -------------------------------------------------------------------------------- /Resources/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Resources/Splash.png -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Private/GameDNAinstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Private/GameDNAinstaller.cpp -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Private/GameDNAinstallerCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Private/GameDNAinstallerCommands.cpp -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Private/GameDNAinstallerCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Private/GameDNAinstallerCore.cpp -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Private/GameDNAinstallerSave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Private/GameDNAinstallerSave.cpp -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Private/GameDNAinstallerStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Private/GameDNAinstallerStyle.cpp -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Private/SGameDNAinstallerConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Private/SGameDNAinstallerConsole.cpp -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Private/SGameDNAinstallerMarshaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Private/SGameDNAinstallerMarshaller.cpp -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Private/SGameDNAinstallerPluginEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Private/SGameDNAinstallerPluginEntry.cpp -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Public/GameDNAinstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Public/GameDNAinstaller.h -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Public/GameDNAinstallerCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Public/GameDNAinstallerCommands.h -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Public/GameDNAinstallerCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Public/GameDNAinstallerCore.h -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Public/GameDNAinstallerSave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Public/GameDNAinstallerSave.h -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Public/GameDNAinstallerStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Public/GameDNAinstallerStyle.h -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Public/GameDNAinstallerTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Public/GameDNAinstallerTypes.h -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Public/SGameDNAinstallerConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Public/SGameDNAinstallerConsole.h -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Public/SGameDNAinstallerMarshaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Public/SGameDNAinstallerMarshaller.h -------------------------------------------------------------------------------- /Source/gameDNAinstaller/Public/SGameDNAinstallerPluginEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/Public/SGameDNAinstallerPluginEntry.h -------------------------------------------------------------------------------- /Source/gameDNAinstaller/gameDNAinstaller.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/Source/gameDNAinstaller/gameDNAinstaller.Build.cs -------------------------------------------------------------------------------- /gameDNAinstaller.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/gameDNAinstaller/HEAD/gameDNAinstaller.uplugin --------------------------------------------------------------------------------