| 6 | #include <types.h> |
| 7 | |
| 8 | xAnimTable* XHUD_AnimTable_Idle() |
| 9 | { |
| 10 | xAnimTable* table = xAnimTableNew("XHUD_AnimTable_Idle", NULL, 0); |
| 11 | xAnimTableNewState(table, "Idle01", 0x10, 1, 1.0f, NULL, NULL, 0.0f, NULL, NULL, |
| 12 | xAnimDefaultBeforeEnter, NULL, NULL); |
| 13 | return table; |
| 14 | } |
| 15 | |
| 16 | namespace xhud |
| 17 | { |
nothing calls this directly
no test coverage detected