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