13 lines
248 B
C#
13 lines
248 B
C#
using UVC.Core;
|
|
using UVC.UI.Commands;
|
|
|
|
namespace EnglewoodLAB.Command
|
|
{
|
|
public class CommandManager : SingletonScene<CommandManager>
|
|
{
|
|
public void Execute(ICommand command)
|
|
{
|
|
command.Execute();
|
|
}
|
|
}
|
|
} |