Add StartupVideo asset type

This commit is contained in:
Archi
2023-03-20 19:53:24 +01:00
parent 5fa1346f18
commit d5e5f82e7f
2 changed files with 4 additions and 1 deletions

View File

@@ -257,6 +257,7 @@ public sealed class Asset {
MiniProfileBackground,
AvatarProfileFrame,
AnimatedAvatar,
KeyboardSkin
KeyboardSkin,
StartupVideo,
}
}

View File

@@ -197,6 +197,8 @@ internal sealed class InventoryResponse : OptionalResultResponse {
return Asset.EType.AnimatedAvatar;
case "item_class_16":
return Asset.EType.KeyboardSkin;
case "item_class_17":
return Asset.EType.StartupVideo;
default:
ASF.ArchiLogger.LogGenericError(string.Format(CultureInfo.CurrentCulture, Strings.WarningUnknownValuePleaseReport, nameof(tag.Value), tag.Value));