Command System
Why Commands?
ICommand Interface
public interface ICommand { }public class GiveItemCommand : ICommand
{
public string TargetEntityId { get; set; }
public string ItemEntryId { get; set; }
public int Quantity { get; set; }
}ICommandHandler Interface
Registering Command Handlers
Executing Commands
How Execution Works
LocalNetworkProvider
Command Design Guidelines
Best Practices
Last updated
Was this helpful?
