Open Sources

This commit is contained in:
2022-05-07 21:24:57 +08:00
parent 8470654472
commit c6c6cab1b3
64 changed files with 40533 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace GrasscutterTools.Game
{
public class GameCommand
{
public GameCommand(string name, string command)
{
Name=name;
Command=command;
}
public string Name { get; set; }
public string Command { get; set; }
}
}