9 lines
128 B
C
9 lines
128 B
C
// state machine
|
|
// List animations here
|
|
|
|
typedef enum STATE {
|
|
CHASETHEDOT,
|
|
PLANARFLOP3D
|
|
};
|
|
|
|
STATE currentState, lastState;
|