mirror of
https://github.com/4sval/FModel.git
synced 2026-08-22 01:14:27 -05:00
added some missing structs
This commit is contained in:
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user