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

@@ -0,0 +1,20 @@
/*
Copyright 2017 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com
All rights reserved.
*/
using System.Reflection;
namespace Il2CppInspector.Reflection
{
public abstract class MethodBase : MemberInfo
{
// (not code attributes)
public MethodAttributes Attributes { get; set; }
// TODO: ContainsGenericParameters
protected MethodBase(TypeInfo declaringType) : base(declaringType) { }
}
}