* Added beta support for Dictionaries. Should work fine for simple dictionaries, may be janky or broken for more complex ones (eg. Dicts nested inside a Dict).
* Fixed a bug with Lists of primitive values.
This commit is contained in:
sinaioutlander
2020-09-06 21:33:09 +10:00
parent 9cb1cea025
commit 692a37635e
6 changed files with 294 additions and 49 deletions

View File

@ -1,4 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
@ -12,7 +13,7 @@ namespace Explorer
public class CppExplorer : MelonMod
{
public const string GUID = "com.sinai.cppexplorer";
public const string VERSION = "1.5.8";
public const string VERSION = "1.5.9";
public const string AUTHOR = "Sinai";
public const string NAME = "CppExplorer"