- Updated MudDesigner to reference the new MudEngine solution. - MudDesigner currently references engine classes within it's own solution and the MudEngine solution. This will be addressed soon. All classes related to the engine will be moved to the MudEngine project. - Began prepping for the removal of all UITypeEditor classes and the namespace from the MudDesigner project. Please note that while this version will compile, it is currently broken. Projects do not get created correctly due to the migration I'm performing. The designer is given less priority at the moment as the engine is the primary focus. Projects will need to be hard-coded using the MudEngine library until the designer is fixed.
30 lines
623 B
C#
30 lines
623 B
C#
//Microsoft .NET Framework
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MudEngine.Commands
|
|
{
|
|
public class CommandResults
|
|
{
|
|
/// <summary>
|
|
/// Result of the command.
|
|
/// </summary>
|
|
public object[] Result { get; set; }
|
|
|
|
public CommandResults()
|
|
{
|
|
}
|
|
|
|
public CommandResults(object[] Result)
|
|
{
|
|
this.Result = Result;
|
|
}
|
|
|
|
public CommandResults(string message)
|
|
{
|
|
this.Result = new object[] { message };
|
|
}
|
|
}
|
|
}
|