mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
9051d28822
Swapped the callback registration systems for Rx subjects exposing observables
19 lines
533 B
C#
19 lines
533 B
C#
using System;
|
|
using Wabbajack.Common;
|
|
using Microsoft.Win32;
|
|
using System.Reactive;
|
|
|
|
namespace VirtualFileSystem.Test
|
|
{
|
|
internal class Program
|
|
{
|
|
private static void Main(string[] args)
|
|
{
|
|
var result = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\7-zip\");
|
|
|
|
Utils.LogMessages.Subscribe(s => Console.WriteLine(s));
|
|
Utils.StatusUpdates.Subscribe((i) => Console.Write(i.Message + "\r"));
|
|
VFS.VirtualFileSystem.VFS.AddRoot(@"D:\tmp\archivetests");
|
|
}
|
|
}
|
|
} |