C++. Compatibility fixes for release 2020.1

This commit is contained in:
Katy Coe
2020-07-03 03:24:42 +02:00
parent 4ca640d551
commit a9d002fd78
2 changed files with 4 additions and 4 deletions

View File

@@ -12,9 +12,9 @@ using System.IO;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using Il2CppInspector.CppUtils.UnityHeaders; using Il2CppInspector.Cpp.UnityHeaders;
namespace Il2CppInspector.CppUtils namespace Il2CppInspector.Cpp
{ {
// Compound type // Compound type
public enum CompoundType public enum CompoundType

View File

@@ -8,8 +8,8 @@ using System;
using System.Diagnostics; using System.Diagnostics;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using Il2CppInspector.CppUtils; using Il2CppInspector.Cpp;
using Il2CppInspector.CppUtils.UnityHeaders; using Il2CppInspector.Cpp.UnityHeaders;
using Il2CppInspector.Reflection; using Il2CppInspector.Reflection;
using NUnit.Framework; using NUnit.Framework;