-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTOEMFactory.cs
More file actions
19 lines (18 loc) · 803 Bytes
/
TOEMFactory.cs
File metadata and controls
19 lines (18 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using LiveSplit.Model;
using LiveSplit.UI.Components;
using System;
using System.Reflection;
namespace LiveSplit.TOEM
{
public class TOEMFactory : IComponentFactory
{
public string ComponentName => "TOEM Autosplitter";
public string Description => "Autosplitter for TOEM game";
public IComponent Create(LiveSplitState state) => new TOEMComponent(state);
public string UpdateName => ComponentName;
public string UpdateURL => "https://raw.githubusercontent.com/CielDeVille/LiveSplit.TOEM/master/";
public string XMLURL => this.UpdateURL + "Components/LiveSplit.TOEM.Updates.xml";
public Version Version => Assembly.GetExecutingAssembly().GetName().Version;
public ComponentCategory Category => ComponentCategory.Control;
}
}