2019-10-27 12:12:35 +00:00
|
|
|
|
using Ceras;
|
|
|
|
|
using Compression.BSA;
|
|
|
|
|
using Wabbajack.Common;
|
|
|
|
|
using Wabbajack.Lib.Downloaders;
|
2019-11-15 13:06:34 +00:00
|
|
|
|
using Wabbajack.VirtualFileSystem;
|
2019-10-27 12:12:35 +00:00
|
|
|
|
|
|
|
|
|
namespace Wabbajack.Lib
|
|
|
|
|
{
|
|
|
|
|
public class CerasConfig
|
|
|
|
|
{
|
2019-10-31 02:24:42 +00:00
|
|
|
|
public static SerializerConfig Config = new SerializerConfig
|
2019-10-27 12:12:35 +00:00
|
|
|
|
{
|
|
|
|
|
KnownTypes =
|
|
|
|
|
{
|
|
|
|
|
typeof(ModList), typeof(Game), typeof(Directive), typeof(IgnoredDirectly),
|
|
|
|
|
typeof(NoMatch), typeof(InlineFile), typeof(PropertyType), typeof(CleanedESM),
|
|
|
|
|
typeof(RemappedInlineFile), typeof(FromArchive), typeof(CreateBSA), typeof(PatchedFromArchive),
|
|
|
|
|
typeof(SourcePatch), typeof(MergedPatch), typeof(Archive), typeof(IndexedArchive), typeof(IndexedEntry),
|
2019-11-04 04:36:25 +00:00
|
|
|
|
typeof(IndexedArchiveEntry), typeof(BSAIndexedEntry), typeof(VirtualFile),
|
|
|
|
|
typeof(ArchiveStateObject), typeof(FileStateObject), typeof(IDownloader),
|
2019-10-27 13:48:51 +00:00
|
|
|
|
typeof(IUrlDownloader), typeof(AbstractDownloadState), typeof(ManualDownloader.State),
|
|
|
|
|
typeof(DropboxDownloader), typeof(GoogleDriveDownloader.State), typeof(HTTPDownloader.State),
|
2019-10-28 12:57:05 +00:00
|
|
|
|
typeof(MegaDownloader.State), typeof(ModDBDownloader.State), typeof(NexusDownloader.State),
|
2019-11-02 18:20:39 +00:00
|
|
|
|
typeof(BSAStateObject), typeof(BSAFileStateObject), typeof(BA2StateObject), typeof(BA2DX10EntryState),
|
2019-11-04 22:09:11 +00:00
|
|
|
|
typeof(BA2FileEntryState), typeof(MediaFireDownloader.State), typeof(ArchiveMeta),
|
2019-12-08 17:00:22 +00:00
|
|
|
|
typeof(PropertyFile), typeof(SteamMeta), typeof(SteamWorkshopDownloader), typeof(SteamWorkshopDownloader.State),
|
|
|
|
|
typeof(LoversLabDownloader.State)
|
2019-11-04 22:09:11 +00:00
|
|
|
|
|
2019-10-27 12:12:35 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|