├── .gitattributes ├── .gitignore ├── Config └── FilterPlugin.ini ├── IniParser.uplugin ├── LICENSE.txt ├── README.md ├── Resources ├── Icon128.png ├── Screenshot_01.png ├── Screenshot_02.png ├── Screenshot_03.png ├── Screenshot_04.png └── Screenshot_05.png └── Source └── IniParser ├── IniParser.Build.cs ├── Private ├── IniData.cpp ├── IniLibrary.cpp ├── IniParserModule.cpp ├── IniProperty.cpp └── IniSection.cpp └── Public ├── IniData.h ├── IniLibrary.h ├── IniParserModule.h ├── IniProperty.h └── IniSection.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/FilterPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Config/FilterPlugin.ini -------------------------------------------------------------------------------- /IniParser.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/IniParser.uplugin -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Resources/Screenshot_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Resources/Screenshot_01.png -------------------------------------------------------------------------------- /Resources/Screenshot_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Resources/Screenshot_02.png -------------------------------------------------------------------------------- /Resources/Screenshot_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Resources/Screenshot_03.png -------------------------------------------------------------------------------- /Resources/Screenshot_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Resources/Screenshot_04.png -------------------------------------------------------------------------------- /Resources/Screenshot_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Resources/Screenshot_05.png -------------------------------------------------------------------------------- /Source/IniParser/IniParser.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Source/IniParser/IniParser.Build.cs -------------------------------------------------------------------------------- /Source/IniParser/Private/IniData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Source/IniParser/Private/IniData.cpp -------------------------------------------------------------------------------- /Source/IniParser/Private/IniLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Source/IniParser/Private/IniLibrary.cpp -------------------------------------------------------------------------------- /Source/IniParser/Private/IniParserModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Source/IniParser/Private/IniParserModule.cpp -------------------------------------------------------------------------------- /Source/IniParser/Private/IniProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Source/IniParser/Private/IniProperty.cpp -------------------------------------------------------------------------------- /Source/IniParser/Private/IniSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Source/IniParser/Private/IniSection.cpp -------------------------------------------------------------------------------- /Source/IniParser/Public/IniData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Source/IniParser/Public/IniData.h -------------------------------------------------------------------------------- /Source/IniParser/Public/IniLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Source/IniParser/Public/IniLibrary.h -------------------------------------------------------------------------------- /Source/IniParser/Public/IniParserModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Source/IniParser/Public/IniParserModule.h -------------------------------------------------------------------------------- /Source/IniParser/Public/IniProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Source/IniParser/Public/IniProperty.h -------------------------------------------------------------------------------- /Source/IniParser/Public/IniSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrRobinOfficial/Unreal-IniParser/HEAD/Source/IniParser/Public/IniSection.h --------------------------------------------------------------------------------