using System.Collections.Generic; using SabreTools.Library.Data; using SabreTools.Library.Help; namespace RombaSharp.Features { internal class Memstats : BaseFeature { public const string Value = "Memstats"; public Memstats() { Name = Value; Flags = new List() { "memstats" }; Description = "Prints memory stats."; _featureType = FeatureType.Flag; LongDescription = "Print memory stats."; Features = new Dictionary(); } public override void ProcessFeatures(Dictionary features) { base.ProcessFeatures(features); Globals.Logger.User("This feature is not yet implemented: memstats"); } } }