using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MonoGameView.DataModels { public sealed class Displayer { static Displayer _container = null; public Dictionary barsPercent { get; set; } public Dictionary info { get; set; } public static int GetPercent(string s) { return _container.barsPercent[s]; } public void SetInfo(Dictionary _info) { info = _info; } public void SetBars(Dictionary barsPercent) { this.barsPercent = barsPercent; } public Displayer() { } } }