mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
28 lines
850 B
C#
28 lines
850 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 keySet = new KeySet();
|
|
|
|
var defaultObjects = DefaultFsServerObjects.GetDefaultEmulatedCreators(rootFs, keySet);
|
|
|
|
var config = new FileSystemServerConfig();
|
|
config.FsCreators = defaultObjects.FsCreators;
|
|
config.DeviceOperator = defaultObjects.DeviceOperator;
|
|
config.ExternalKeySet = new ExternalKeySet();
|
|
config.KeySet = keySet;
|
|
|
|
Horizon horizon = LibHac.HorizonFactory.CreateWithFsConfig(new HorizonConfiguration(), config);
|
|
|
|
return horizon;
|
|
}
|
|
}
|
|
}
|