Re-factoring / boilerplate code

This commit is contained in:
Katy Coe
2017-11-08 01:08:02 +01:00
parent 3db660a454
commit 5e652606b2
7 changed files with 75 additions and 39 deletions

View File

@@ -4,6 +4,7 @@
All rights reserved.
*/
using System;
using System.Collections.Generic;
using System.Linq;
@@ -21,7 +22,7 @@ namespace Il2CppInspector.Reflection {
public string FullName { get; }
// Entry point method for the assembly
//public MethodInfo EntryPoint { get; } // TODO
public MethodInfo EntryPoint => throw new NotImplementedException();
// List of types defined in the assembly
public List<TypeInfo> DefinedTypes { get; } = new List<TypeInfo>();