mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 14:24:10 +02:00
21 lines
300 B
Beef
21 lines
300 B
Beef
![]() |
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace IDE
|
||
|
{
|
||
|
class CmdTarget
|
||
|
{
|
||
|
List<String> mQueue = new .() ~ DeleteContainerAndItems!(_);
|
||
|
|
||
|
public void Queue(StringView cmd)
|
||
|
{
|
||
|
mQueue.Add(new String(cmd));
|
||
|
}
|
||
|
|
||
|
public Result<void> Execute(StringView cmd)
|
||
|
{
|
||
|
return .Ok;
|
||
|
}
|
||
|
}
|
||
|
}
|