forked from drtchops/LiveSplit.Skyrim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSkyrimFactory.cs
More file actions
26 lines (18 loc) · 819 Bytes
/
SkyrimFactory.cs
File metadata and controls
26 lines (18 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using LiveSplit.Model;
using LiveSplit.UI.Components;
using System;
using System.Reflection;
namespace LiveSplit.Skyrim
{
public class SkyrimFactory : IComponentFactory
{
public string ComponentName => "Skyrim";
public string Description => "Automates splitting and load removal for Skyrim.";
public ComponentCategory Category => ComponentCategory.Control;
public IComponent Create(LiveSplitState state) => new SkyrimComponent(state);
public string UpdateName => ComponentName;
public string UpdateURL => "https://raw.githubusercontent.com/drtchops/LiveSplit.Skyrim/master/";
public Version Version => Assembly.GetExecutingAssembly().GetName().Version;
public string XMLURL => UpdateURL + "Components/update.LiveSplit.Skyrim.xml";
}
}