- Timestamp:
- Feb 22, 2023, 5:48:07 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2/CommandExtensions/src/Commands/ListItems.cs
r402 r405 6 6 [UsedImplicitly] 7 7 public class ListItems : ConsoleCmdAbstract { 8 p ublic override string GetDescription () {8 protected override string getDescription () { 9 9 return "lists all items that contain the given substring"; 10 10 } 11 11 12 p ublic override string[] GetCommands () {12 protected override string[] getCommands () { 13 13 return new[] {"listitems", "li"}; 14 14 } 15 15 16 p ublic override string GetHelp () {16 protected override string getHelp () { 17 17 return "List all available item names\n" + 18 18 "Usage:\n" +
Note:
See TracChangeset
for help on using the changeset viewer.