mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
22 lines
383 B
C#
22 lines
383 B
C#
using AssetRipper.Core.Parser.Asset;
|
|
using System;
|
|
|
|
namespace AssetRipper.Core.VersionHandling
|
|
{
|
|
public static class VersionManager
|
|
{
|
|
private static AssetFactoryBase? _assetFactory;
|
|
public static AssetFactoryBase AssetFactory
|
|
{
|
|
get
|
|
{
|
|
return _assetFactory ?? throw new Exception("AssetFactory not set");
|
|
}
|
|
set
|
|
{
|
|
_assetFactory = value;
|
|
}
|
|
}
|
|
}
|
|
}
|