mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-19 18:28:06 -05:00
16 lines
396 B
C
16 lines
396 B
C
#ifndef NNSYS_G2D_G2D_ANIMATION_INLINE_H
|
|
#define NNSYS_G2D_G2D_ANIMATION_INLINE_H
|
|
|
|
#include <nnsys/g2d/g2d_Animation.h>
|
|
|
|
static inline void NNS_G2dStartAnimCtrl(
|
|
NNSG2dAnimController *pAnimCtrl) {
|
|
pAnimCtrl->bActive = TRUE;
|
|
}
|
|
|
|
static inline BOOL NNS_G2dIsAnimCtrlActive(const NNSG2dAnimController *pAnimCtrl) {
|
|
return pAnimCtrl->bActive;
|
|
}
|
|
|
|
#endif // NNSYS_G2D_G2D_ANIMATION_INLINE_H
|