namespace Nadeko.Snake; /// /// Sets the priority of a command in case there are multiple commands with the same name but different parameters. /// Higher value means higher priority. /// [AttributeUsage(AttributeTargets.Method)] public class prioAttribute : Attribute { public int Priority { get; } /// /// Snek command priority /// /// Priority value. The higher the value, the higher the priority public prioAttribute(int priority) { Priority = priority; } }