r2mods/ilspy_dump/ror2_csproj/RoR2/ConCommandAttribute.cs

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 = "";
}