public WorldRecordComponent(LiveSplitState state)
        {
            State = state;

            RefreshInterval = TimeSpan.FromMinutes(5);
            Cache = new GraphicsCache();
            TimeFormatter = new RegularTimeFormatter();
            InternalComponent = new InfoTextComponent("World Record", "-");
            Settings = new WorldRecordSettings()
            {
                CurrentState = state
            };
        }
 public CurrentComparison(LiveSplitState state)
 {
     Settings = new CurrentComparisonSettings()
     {
         CurrentState = state
     };
     InternalComponent = new InfoTextComponent("Comparing Against", "")
     {
         AlternateNameText = new String[]
         {
             "Comparison",
             "Comp."
         }
     };
 }
Exemplo n.º 3
0
 public KTANEComponent() {
     textInfo = new InfoTextComponent("Best Time", "");
     textInfo.LongestString = "Best Time 123.456 / 123.456";
     textInfo.InformationName = "Best Time";
 }
 public OriComponent() {
     textInfo = new InfoTextComponent("0%", "Swamp 0.00%");
     oriState = new OriState();
     Settings = new OriAndTheBlindForestSettings(this);
     oriState.oriTriggers.OnSplit += OnSplitTriggered;
 }