Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ FromType< T >()

static ChatCommandId Terraria.Chat.ChatCommandId.FromType< T > ( )
inlinestatic
Type Constraints
T :IChatCommand 

Definition at line 17 of file ChatCommandId.cs.

18 {
19 ChatCommandAttribute cacheableAttribute = AttributeUtilities.GetCacheableAttribute<T, ChatCommandAttribute>();
20 if (cacheableAttribute != null)
21 {
22 return new ChatCommandId(cacheableAttribute.Name);
23 }
24 return new ChatCommandId(null);
25 }

References Terraria.Chat.ChatCommandId.ChatCommandId(), and Terraria.Chat.Commands.ChatCommandAttribute.Name.