Files
Il2CppInspectorRedux/Il2CppInspector/Reflection/ReflectionClasses.cs
2017-11-07 05:41:32 +01:00

39 lines
650 B
C#

/*
Copyright 2017 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com
All rights reserved.
*/
namespace Il2CppInspector.Reflection
{
/*
public abstract class MethodBase : MemberInfo
{
// (not code attributes)
public MethodAttributes Attributes { get; set; }
// TODO: ContainsGenericParameters
}
public class ConstructorInfo : MethodBase
{
// TODO
}
public class MethodInfo : MethodBase
{
// TODO
}
public class PropertyInfo : MemberInfo
{
// TODO
}
public class CustomAttributeData
{
// TODO
}
*/
}