mirror of
https://github.com/zeldaret/oot.git
synced 2025-05-09 18:43:45 +00:00
10 lines
265 B
C
10 lines
265 B
C
#ifndef TRANSITION_INSTANCES_H
|
|
#define TRANSITION_INSTANCES_H
|
|
|
|
typedef enum TransitionInstanceType {
|
|
/* 1 */ TRANS_INSTANCE_TYPE_FILL_OUT = 1,
|
|
/* 2 */ TRANS_INSTANCE_TYPE_FILL_IN,
|
|
/* 3 */ TRANS_INSTANCE_TYPE_FADE_FLASH
|
|
} TransitionInstanceType;
|
|
|
|
#endif
|