This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| using System.Linq; | |
| using ChatCommandAPI; | |
| using UnityEngine; | |
| public class CountCommand : Command | |
| { | |
| public override string Name => "CountItems"; | |
| public override string[] Commands => ["count", Name]; | |
| public override string Description => "Counts all items on the map"; |