mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
26 lines
754 B
C#
26 lines
754 B
C#
using LibHac.Common.Keys;
|
|
using LibHac.Fs;
|
|
using LibHac.Fs.Fsa;
|
|
using LibHac.FsSrv;
|
|
|
|
namespace LibHac.Tests
|
|
{
|
|
public static class HorizonFactory
|
|
{
|
|
public static Horizon CreateBasicHorizon()
|
|
{
|
|
IFileSystem rootFs = new InMemoryFileSystem();
|
|
|
|
var defaultObjects = DefaultFsServerObjects.GetDefaultEmulatedCreators(rootFs, new KeySet());
|
|
|
|
var config = new FileSystemServerConfig();
|
|
config.FsCreators = defaultObjects.FsCreators;
|
|
config.DeviceOperator = defaultObjects.DeviceOperator;
|
|
config.ExternalKeySet = new ExternalKeySet();
|
|
|
|
var horizon = new Horizon(new StopWatchTimeSpanGenerator(), config);
|
|
|
|
return horizon;
|
|
}
|
|
}
|
|
}
|