C++: Finish initial draft of header parsing

This commit is contained in:
Katy Coe
2020-06-25 15:42:37 +02:00
parent d8aaba375e
commit ee2f851a1a
2 changed files with 242 additions and 42 deletions

View File

@@ -5,6 +5,7 @@
*/
using System;
using System.Diagnostics;
using System.IO;
using Il2CppInspector.Cpp;
using Il2CppInspector.Outputs.UnityHeaders;
@@ -22,6 +23,9 @@ namespace Il2CppInspector
var cppTypes = CppTypes.FromUnityHeaders(new UnityVersion("2019.3.1f1"));
foreach (var cppType in cppTypes.Types)
Debug.WriteLine(cppType.Key + ":\n" + cppType.Value + "\n");
throw new NotImplementedException();
}
}