mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-24 23:18:36 -05:00
14 lines
408 B
C
14 lines
408 B
C
#ifndef POKEPLATINUM_STRUCT_QUADRATIC_INTERPOLATION_TASK_FX32_H
|
|
#define POKEPLATINUM_STRUCT_QUADRATIC_INTERPOLATION_TASK_FX32_H
|
|
|
|
typedef struct QuadraticInterpolationTaskFX32 {
|
|
fx32 currentValue;
|
|
fx32 startValue;
|
|
fx32 initialRate;
|
|
fx32 quadraticCoeff;
|
|
int currentStep;
|
|
int numSteps;
|
|
} QuadraticInterpolationTaskFX32;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_QUADRATIC_INTERPOLATION_TASK_FX32_H
|