14 lines
192 B
C
14 lines
192 B
C
#ifndef SHADER_H
|
|
#define SHADER_H
|
|
|
|
#include "color_utils.h"
|
|
|
|
typedef struct {
|
|
int index;
|
|
double time;
|
|
} Status;
|
|
|
|
void init_status(Status* status);
|
|
Color shader(Status* status);
|
|
|
|
#endif |