mirror of
https://github.com/4sval/FModel.git
synced 2026-03-22 01:34:37 -05:00
added some missing structs
This commit is contained in:
parent
1b2f6c636f
commit
220ed024cd
14
FModel/PakReader/Parsers/Objects/FPrimaryAssetId.cs
Normal file
14
FModel/PakReader/Parsers/Objects/FPrimaryAssetId.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
namespace FModel.PakReader.Parsers.Objects
|
||||
{
|
||||
public readonly struct FPrimaryAssetId : IUStruct
|
||||
{
|
||||
public readonly FPrimaryAssetType PrimaryAssetType;
|
||||
public readonly FName PrimaryAssetName;
|
||||
|
||||
public FPrimaryAssetId(PackageReader reader)
|
||||
{
|
||||
PrimaryAssetType = new FPrimaryAssetType(reader);
|
||||
PrimaryAssetName = reader.ReadFName();
|
||||
}
|
||||
}
|
||||
}
|
||||
12
FModel/PakReader/Parsers/Objects/FPrimaryAssetType.cs
Normal file
12
FModel/PakReader/Parsers/Objects/FPrimaryAssetType.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
namespace FModel.PakReader.Parsers.Objects
|
||||
{
|
||||
public readonly struct FPrimaryAssetType : IUStruct
|
||||
{
|
||||
public readonly FName Name;
|
||||
|
||||
public FPrimaryAssetType(PackageReader reader)
|
||||
{
|
||||
Name = reader.ReadFName();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user