mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-05-23 05:16:18 -05:00
13 lines
354 B
C
13 lines
354 B
C
#ifndef POKEPLATINUM_STRUCT_LINEAR_INTERPOLATION_TASK_S32_H
|
|
#define POKEPLATINUM_STRUCT_LINEAR_INTERPOLATION_TASK_S32_H
|
|
|
|
typedef struct LinearInterpolationTaskS32 {
|
|
int currentValue;
|
|
int startValue;
|
|
int delta;
|
|
int currentStep;
|
|
int numSteps;
|
|
} LinearInterpolationTaskS32;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_LINEAR_INTERPOLATION_TASK_S32_H
|