-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add multi-thread support for Core functions Add pos tag support in compatibility adapter Add Style component in PlayerUI
- Loading branch information
1 parent
1565d5c
commit d7083ab
Showing
20 changed files
with
1,499 additions
and
494 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
using CommandSystem; | ||
using HintServiceMeow.Core.Utilities; | ||
using HintServiceMeow.Core.Utilities.Patch; | ||
using System; | ||
|
||
namespace HintServiceMeow.Commands | ||
{ | ||
[CommandHandler(typeof(RemoteAdminCommandHandler))] | ||
internal class GetCompatAssemblyName: ICommand | ||
{ | ||
public string Command => "GetCompatAssemblyName"; | ||
|
||
public string[] Aliases => new string[] { "GCAN" }; | ||
|
||
public string Description => "Get the name of all the assemblies that are using Compatibility Adaptor in HintServiceMeow"; | ||
|
||
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response) | ||
{ | ||
var sb = new System.Text.StringBuilder(); | ||
|
||
sb.AppendLine("The following assemblies are using Compatibility Adaptor in HintServiceMeow:"); | ||
|
||
foreach(var name in CompatibilityAdaptor.RegisteredAssemblies) | ||
{ | ||
sb.Append("- "); | ||
sb.AppendLine(name); | ||
} | ||
|
||
response = sb.ToString(); | ||
return true; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.