Re-factoring / boilerplate code
This commit is contained in:
20
Il2CppInspector/Reflection/MethodBase.cs
Normal file
20
Il2CppInspector/Reflection/MethodBase.cs
Normal 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) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user