mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
17 lines
457 B
C#
17 lines
457 B
C#
using System;
|
|
using Wabbajack.Common;
|
|
|
|
namespace VirtualFileSystem.Test
|
|
{
|
|
internal class Program
|
|
{
|
|
private static void Main(string[] args)
|
|
{
|
|
Utils.SetLoggerFn(s => Console.WriteLine(s));
|
|
Utils.SetStatusFn((s, i) => Console.Write(s + "\r"));
|
|
WorkQueue.Init((a, b, c) => { },
|
|
(a, b) => { });
|
|
VFS.VirtualFileSystem.VFS.AddRoot(@"D:\tmp\archivetests");
|
|
}
|
|
}
|
|
} |