Delta Force Hawk Ops support
Some checks are pending
FModel QA Builder / build (push) Waiting to run

This commit is contained in:
LongerWarrior 2024-08-15 01:08:13 +03:00
parent 1983e6f8bd
commit bf97c0002f
2 changed files with 5 additions and 3 deletions

@ -1 +1 @@
Subproject commit b840365bace509fc585d67cac96acd4543558b4b
Subproject commit dbf308efa456ccbb30ed253acbf2b122dae2cae4

View File

@ -40,7 +40,8 @@ using CUE4Parse.GameTypes.DBD.Encryption.Aes;
using CUE4Parse.GameTypes.DreamStar.Encryption.Aes;
using CUE4Parse.GameTypes.PAXDEI.Encryption.Aes;
using CUE4Parse.GameTypes.NetEase.MAR.Encryption.Aes;
using CUE4Parse.GameTypes.FSR.Encryption.Aes;
using CUE4Parse.GameTypes.FSR.Encryption.Aes;
using CUE4Parse.GameTypes.DeltaForce.Encryption.Aes;
using CUE4Parse.UE4.Objects.Core.Misc;
using EpicManifestParser;
using FModel.Creator;
@ -182,7 +183,8 @@ public class CUE4ParseViewModel : ViewModel
EGame.GAME_DeadByDaylight => DBDAes.DbDDecrypt,
EGame.GAME_PaxDei => PaxDeiAes.PaxDeiDecrypt,
EGame.GAME_3on3FreeStyleRebound => FreeStyleReboundAes.FSRDecrypt,
EGame.GAME_DreamStar => DreamStarAes.DreamStarDecrypt,
EGame.GAME_DreamStar => DreamStarAes.DreamStarDecrypt,
EGame.GAME_DeltaForceHawkOps => DeltaForceAes.DeltaForceDecrypt,
_ => Provider.CustomEncryption
};