mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
17 lines
429 B
C
17 lines
429 B
C
#ifndef POKEPLATINUM_STRUCT_CONTEST_CAMERA_FLASH_TASK_H
|
|
#define POKEPLATINUM_STRUCT_CONTEST_CAMERA_FLASH_TASK_H
|
|
|
|
#include "sys_task_manager.h"
|
|
|
|
typedef struct ContestCameraFlashTask {
|
|
SysTask *sysTask;
|
|
const u8 *cameraFlashFrameDelays;
|
|
s16 frameCounter;
|
|
u8 flashCounter;
|
|
u8 state;
|
|
u8 contestantID;
|
|
u8 padding_0D[3];
|
|
} ContestCameraFlashTask;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_CONTEST_CAMERA_FLASH_TASK_H
|