More work on commands, still needs some work but most should be working now.

This commit is contained in:
hondacrx
2022-08-28 15:48:56 -04:00
parent 89b92985c5
commit 0c0e588f18
13 changed files with 495 additions and 483 deletions
+11
View File
@@ -79,4 +79,15 @@ namespace Game.Chat
[AttributeUsage(AttributeTargets.Parameter)]
public class OptionalArgAttribute : Attribute { }
[AttributeUsage(AttributeTargets.Parameter)]
public class VariantArgAttribute : Attribute
{
public Type[] Types { get; set; }
public VariantArgAttribute(params Type[] types)
{
Types = types;
}
}
}