15 lines
296 B
C#
15 lines
296 B
C#
using System;
|
|
using HG.Reflection;
|
|
|
|
namespace RoR2;
|
|
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = false)]
|
|
public class ConCommandAttribute : HG.Reflection.SearchableAttribute
|
|
{
|
|
public string commandName;
|
|
|
|
public ConVarFlags flags;
|
|
|
|
public string helpText = "";
|
|
}
|