├── .gitignore ├── .vscode └── settings.json ├── Config ├── BaseVaRest.ini ├── DefaultVaRest.ini └── FilterPlugin.ini ├── LICENSE ├── README.md ├── Resources └── Icon128.png ├── SCREENSHOT.jpg ├── Source ├── .clang-format ├── VaRest │ ├── Private │ │ ├── VaRestJsonObject.cpp │ │ ├── VaRestJsonParser.cpp │ │ ├── VaRestJsonParser.h │ │ ├── VaRestJsonValue.cpp │ │ ├── VaRestLibrary.cpp │ │ ├── VaRestRequestJSON.cpp │ │ ├── VaRestSettings.cpp │ │ ├── VaRestSubsystem.cpp │ │ └── VaRestX.cpp │ ├── Public │ │ ├── VaRestDefines.h │ │ ├── VaRestJsonObject.h │ │ ├── VaRestJsonValue.h │ │ ├── VaRestLibrary.h │ │ ├── VaRestRequestJSON.h │ │ ├── VaRestSettings.h │ │ ├── VaRestSubsystem.h │ │ ├── VaRestTypes.h │ │ └── VaRestX.h │ └── VaRest.Build.cs └── VaRestEditor │ ├── Private │ ├── VaRestEditor.cpp │ └── VaRest_BreakJson.cpp │ ├── Public │ ├── VaRestEditor.h │ └── VaRest_BreakJson.h │ └── VaRestEditor.Build.cs └── VaRestX.uplugin /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Config/BaseVaRest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Config/BaseVaRest.ini -------------------------------------------------------------------------------- /Config/DefaultVaRest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Config/DefaultVaRest.ini -------------------------------------------------------------------------------- /Config/FilterPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Config/FilterPlugin.ini -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /SCREENSHOT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/SCREENSHOT.jpg -------------------------------------------------------------------------------- /Source/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/.clang-format -------------------------------------------------------------------------------- /Source/VaRest/Private/VaRestJsonObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Private/VaRestJsonObject.cpp -------------------------------------------------------------------------------- /Source/VaRest/Private/VaRestJsonParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Private/VaRestJsonParser.cpp -------------------------------------------------------------------------------- /Source/VaRest/Private/VaRestJsonParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Private/VaRestJsonParser.h -------------------------------------------------------------------------------- /Source/VaRest/Private/VaRestJsonValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Private/VaRestJsonValue.cpp -------------------------------------------------------------------------------- /Source/VaRest/Private/VaRestLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Private/VaRestLibrary.cpp -------------------------------------------------------------------------------- /Source/VaRest/Private/VaRestRequestJSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Private/VaRestRequestJSON.cpp -------------------------------------------------------------------------------- /Source/VaRest/Private/VaRestSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Private/VaRestSettings.cpp -------------------------------------------------------------------------------- /Source/VaRest/Private/VaRestSubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Private/VaRestSubsystem.cpp -------------------------------------------------------------------------------- /Source/VaRest/Private/VaRestX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Private/VaRestX.cpp -------------------------------------------------------------------------------- /Source/VaRest/Public/VaRestDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Public/VaRestDefines.h -------------------------------------------------------------------------------- /Source/VaRest/Public/VaRestJsonObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Public/VaRestJsonObject.h -------------------------------------------------------------------------------- /Source/VaRest/Public/VaRestJsonValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Public/VaRestJsonValue.h -------------------------------------------------------------------------------- /Source/VaRest/Public/VaRestLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Public/VaRestLibrary.h -------------------------------------------------------------------------------- /Source/VaRest/Public/VaRestRequestJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Public/VaRestRequestJSON.h -------------------------------------------------------------------------------- /Source/VaRest/Public/VaRestSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Public/VaRestSettings.h -------------------------------------------------------------------------------- /Source/VaRest/Public/VaRestSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Public/VaRestSubsystem.h -------------------------------------------------------------------------------- /Source/VaRest/Public/VaRestTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Public/VaRestTypes.h -------------------------------------------------------------------------------- /Source/VaRest/Public/VaRestX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/Public/VaRestX.h -------------------------------------------------------------------------------- /Source/VaRest/VaRest.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRest/VaRest.Build.cs -------------------------------------------------------------------------------- /Source/VaRestEditor/Private/VaRestEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRestEditor/Private/VaRestEditor.cpp -------------------------------------------------------------------------------- /Source/VaRestEditor/Private/VaRest_BreakJson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRestEditor/Private/VaRest_BreakJson.cpp -------------------------------------------------------------------------------- /Source/VaRestEditor/Public/VaRestEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRestEditor/Public/VaRestEditor.h -------------------------------------------------------------------------------- /Source/VaRestEditor/Public/VaRest_BreakJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRestEditor/Public/VaRest_BreakJson.h -------------------------------------------------------------------------------- /Source/VaRestEditor/VaRestEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/Source/VaRestEditor/VaRestEditor.Build.cs -------------------------------------------------------------------------------- /VaRestX.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AboveConstraints/VaRestX/HEAD/VaRestX.uplugin --------------------------------------------------------------------------------