Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ChatCommandAttribute.cs
Go to the documentation of this file.
1using System;
2
4
5[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, Inherited = false)]
6public sealed class ChatCommandAttribute : Attribute
7{
8 public readonly string Name;
9
10 public ChatCommandAttribute(string name)
11 {
12 Name = name;
13 }
14}