mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
30 lines
765 B
C#
30 lines
765 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ReactiveUI;
|
|
using Splat;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
public static class ConverterRegistration
|
|
{
|
|
public static void Register()
|
|
{
|
|
Locator.CurrentMutable.RegisterConstant(
|
|
new CommandConverter(),
|
|
typeof(IBindingTypeConverter)
|
|
);
|
|
Locator.CurrentMutable.RegisterConstant(
|
|
new IntDownCastConverter(),
|
|
typeof(IBindingTypeConverter)
|
|
);
|
|
Locator.CurrentMutable.RegisterConstant(
|
|
new PercentToDoubleConverter(),
|
|
typeof(IBindingTypeConverter)
|
|
);
|
|
}
|
|
}
|
|
}
|