-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathFactory.cs
More file actions
23 lines (19 loc) · 857 Bytes
/
Factory.cs
File metadata and controls
23 lines (19 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using LiveSplit.Model;
using LiveSplit.UI.Components;
using LiveSplit.VAS;
[assembly: ComponentFactory(typeof(Factory))]
namespace LiveSplit.UI.Components
{
public class Factory : IComponentFactory
{
public string ComponentName => "Video Auto Splitter";
public string Description => "Allows scripting of splitting behavior based on events from a video stream.";
public ComponentCategory Category => ComponentCategory.Control;
public Version Version => VASComponent.Version;
public string UpdateName => ComponentName;
public string UpdateURL => "http://livesplit.org/update/";
public string XMLURL => "http://livesplit.org/update/Components/update.LiveSplit.VideoAutoSplitter.xml";
public IComponent Create(LiveSplitState state) => new VASComponent(state);
}
}