22 lines
388 B
Plaintext
22 lines
388 B
Plaintext
include "EngineTests/BigFile/Asset/AssetA.fbs";
|
|
|
|
namespace Bigfoot.Flat;
|
|
|
|
struct AssetBHardRef (native_type: "::Bigfoot::HardRef<::Bigfoot::AssetB>")
|
|
{
|
|
uuid: UUID;
|
|
}
|
|
|
|
struct AssetBSoftRef (native_type: "::Bigfoot::SoftRef<::Bigfoot::AssetB>")
|
|
{
|
|
uuid: UUID;
|
|
}
|
|
|
|
table AssetB
|
|
{
|
|
asset_header: AssetHeader;
|
|
|
|
asset_a_hard_ref: AssetAHardRef (native_inline);
|
|
}
|
|
|
|
root_type AssetB; |