123456789101112131415161718192021 |
- using System;
- using System.Reflection;
- namespace IngameDebugConsole
- {
- public abstract class ConsoleAttribute : Attribute
- {
- public MethodInfo Method { get; private set; }
- public abstract int Order { get; }
- public void SetMethod(MethodInfo method)
- {
- if (Method != null)
- throw new Exception("Method was already initialized.");
- Method = method;
- }
- public abstract void Load();
- }
- }
|