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
- Host: GitHub
- URL: https://github.com/w2wizard/flax-iniparser
- Owner: W2Wizard
- License: mit
- Created: 2021-04-25T13:20:31.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-25T13:32:22.000Z (about 5 years ago)
- Last Synced: 2025-12-26T19:36:27.905Z (6 months ago)
- Language: C#
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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");
```