|
CommandPattern 1.0.0
This package contains a collection of classes and interfaces to allow for quick and consistent implementation of the command pattern across projects.
|
A Command that does nothing More...
Public Member Functions | |
| override void | Execute () |
| Does Nothing More... | |
| ICommand | GetUndoCommand () |
| Since the command doesn't do anything it returns itself More... | |
| abstract void | Execute () |
| Executes the command, do not invoke directly, instead use a CommandStream. More... | |
| abstract void | Execute () |
| Executes the function of the command More... | |
| ICommand | GetUndoCommand () |
| Creates a command to revert the changes of the implementing command More... | |
A Command that does nothing
|
virtual |
Does Nothing
Implements SadSapphicGames.CommandPattern.Command.
| ICommand SadSapphicGames.CommandPattern.NullCommand.GetUndoCommand | ( | ) |
Since the command doesn't do anything it returns itself
Implements SadSapphicGames.CommandPattern.IUndoable.