mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-12-15 10:11:35 +08:00
Open Sources
This commit is contained in:
15
Source/GrasscutterTools/Game/GameCommand.cs
Normal file
15
Source/GrasscutterTools/Game/GameCommand.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user