mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-06 23:38:32 +00:00
16 lines
254 B
C++
16 lines
254 B
C++
#pragma once
|
|
|
|
#include <basis/seadTypes.h>
|
|
|
|
namespace al {
|
|
struct ExecuteOrder {
|
|
const char* listName;
|
|
const char* executeGroup;
|
|
s32 listMaxSize;
|
|
const char* groupType;
|
|
};
|
|
|
|
static_assert(sizeof(ExecuteOrder) == 0x20);
|
|
|
|
} // namespace al
|