-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFactory.cs
More file actions
24 lines (21 loc) · 794 Bytes
/
Copy pathFactory.cs
File metadata and controls
24 lines (21 loc) · 794 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
using LiveSplit.Model;
using LiveSplit.UI.Components;
using System;
[assembly: ComponentFactory(typeof(LiveSplit.TimerSync.Factory))]
namespace LiveSplit.TimerSync
{
public class Factory : IComponentFactory
{
public string ComponentName => "Timer Sync";
public string Description => "Synchronizes LiveSplit timers, splits, and layout text components between Host and Client using P2P.";
public ComponentCategory Category => ComponentCategory.Timer;
public string UpdateName => ComponentName;
public string XMLURL => "";
public string UpdateURL => "";
public Version Version => Version.Parse("1.0.0");
public IComponent Create(LiveSplitState state)
{
return new Component(state);
}
}
}