mirror of
https://github.com/4sval/FModel.git
synced 2026-04-05 08:36:10 -05:00
18 lines
430 B
C#
18 lines
430 B
C#
using System.IO;
|
|
using static PakReader.AssetReader;
|
|
|
|
namespace PakReader
|
|
{
|
|
public struct FSoftObjectPathMap
|
|
{
|
|
public string asset_path_name;
|
|
public string sub_path_string;
|
|
|
|
internal FSoftObjectPathMap(BinaryReader reader, FNameEntrySerialized[] name_map)
|
|
{
|
|
asset_path_name = read_fname(reader, name_map);
|
|
sub_path_string = read_string(reader);
|
|
}
|
|
}
|
|
}
|