-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSteamWorldFactory.cs
More file actions
16 lines (16 loc) · 908 Bytes
/
SteamWorldFactory.cs
File metadata and controls
16 lines (16 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using LiveSplit.Model;
using LiveSplit.UI.Components;
using System;
using System.Reflection;
namespace LiveSplit.SteamWorldDig {
public class SteamWorldFactory : IComponentFactory {
public string ComponentName { get { return "SteamWorld Dig Randomizer"; } }
public string Description { get { return "Randomizer for SteamWorld Dig"; } }
public ComponentCategory Category { get { return ComponentCategory.Control; } }
public IComponent Create(LiveSplitState state) { return new SteamWorldComponent(); }
public string UpdateName { get { return this.ComponentName; } }
public string UpdateURL { get { return "https://raw.githubusercontent.com/clementgallet/LiveSplit.SteamWorldDig.Randomizer/master/"; } }
public string XMLURL { get { return this.UpdateURL + "Components/LiveSplit.SteamWorldDig.Randomizer.Updates.xml"; } }
public Version Version { get { return Version.Parse("1.3"); } }
}
}