0d3885a863
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: OFF) (push) Successful in 7m19s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: ON) (push) Successful in 5m14s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Successful in 5m48s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Successful in 5m44s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: OFF) (push) Successful in 5m59s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: ON) (push) Successful in 5m50s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Successful in 6m55s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Successful in 6m59s
Bigfoot / Build & Test Release with ./ConanProfiles/clang (Unity Build: OFF) (push) Successful in 5m55s
Bigfoot / Build & Test Release with ./ConanProfiles/clang (Unity Build: ON) (push) Successful in 5m56s
Bigfoot / Build & Test Release with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Successful in 6m45s
Bigfoot / Build & Test Release with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Successful in 6m54s
Bigfoot / Clang Format Checks (push) Failing after 10s
22 lines
512 B
Plaintext
22 lines
512 B
Plaintext
include "Engine/Asset/AssetTypeID.fbs";
|
|
|
|
include "System/UUID/UUID.fbs";
|
|
|
|
namespace Flat.Bigfoot;
|
|
|
|
table AssetHeader
|
|
{
|
|
uuid: UUID (required, native_inline, id: 0);
|
|
name: string (required, id: 1);
|
|
type_id: AssetTypeID (required, native_inline, id: 2);
|
|
type_name: string (required, id: 3);
|
|
version: uint = 0 (id: 4);
|
|
}
|
|
|
|
table Asset
|
|
{
|
|
header: AssetHeader (required, id: 0);
|
|
inner_asset: [ubyte] (required, id: 1);
|
|
}
|
|
|
|
root_type Asset; |