13 lines
220 B
C
13 lines
220 B
C
#ifndef MONS_LIGHT_H
|
|
#define MONS_LIGHT_H
|
|
|
|
#include "transform.h"
|
|
#include "mons_math/vec4.h"
|
|
|
|
typedef struct mons_directional_light {
|
|
mons_transform transform;
|
|
mons_vec4 color;
|
|
} mons_directional_light;
|
|
|
|
#endif
|