aboutsummaryrefslogtreecommitdiff
path: root/mons_3d/include/light.h
blob: 8f1aac28272557105e195015bbdb014a49252c25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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