mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-22 03:11:47 -05:00
Tiny change - github bugging out
This commit is contained in:
parent
9952cfd7eb
commit
7efdde5832
1 changed files with 7 additions and 3 deletions
|
@ -6,10 +6,14 @@ using System.Threading.Tasks;
|
|||
|
||||
namespace ShiftOS.Engine.Terminal
|
||||
{
|
||||
public abstract class TerminalCommand
|
||||
public class TerminalCommand
|
||||
{
|
||||
public abstract string GetName();
|
||||
public string GetName() { return ""; }
|
||||
|
||||
public abstract string Run(params string[] parameters);
|
||||
public void Run(params string[] parameters) { return ""; }
|
||||
|
||||
public void Run(params string[] parameters) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue