mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-15 06:04:49 +01:00
19 lines
257 B
C
19 lines
257 B
C
|
#ifndef _SCALE_PATTERN_H
|
||
|
#define _SCALE_PATTERN_H
|
||
|
|
||
|
typedef enum {
|
||
|
REPEAT,
|
||
|
SEQUENCE,
|
||
|
ONCE,
|
||
|
END
|
||
|
} SCALE_PATTERN_TYPE;
|
||
|
|
||
|
typedef struct {
|
||
|
SCALE_PATTERN_TYPE type;
|
||
|
int dst_index;
|
||
|
int src_index;
|
||
|
int count;
|
||
|
} scale_pattern;
|
||
|
|
||
|
#endif
|