@@ -8,9 +8,11 @@ namespace Ichni.Editor.Commands
|
||||
public class CommandGroup : ICommand
|
||||
{
|
||||
private List<ICommand> commands = new List<ICommand>();
|
||||
public int Count => commands.Count;
|
||||
|
||||
public void Add(ICommand cmd)
|
||||
{
|
||||
if (cmd == null) return;
|
||||
commands.Add(cmd);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user