An open API service indexing awesome lists of open source software.

https://github.com/w2wizard/flax-iniparser

INI file parser as a plugin for the Flax Engine
https://github.com/w2wizard/flax-iniparser

Last synced: 2 months ago
JSON representation

INI file parser as a plugin for the Flax Engine

Awesome Lists containing this project

README

          

# Flax-INIParser
INI file parser as a plugin for the Flax Engine.
As of now its only C#, in the future if I have time I might include C++.

## How to install?
Add the following to your project's `.flaxproj` under references:
```
"Name": "$(ProjectPath)/Plugins/INIParser/INIParser.flaxproj"
```

Upnext go to `.Build.cs` and add the following under the `Setup` method.
```cs
options.PrivateDependencies.Add("INIParser");
```