aboutsummaryrefslogtreecommitdiff
path: root/08-august/src/light.h
blob: afc8edac2ea01bd757db305b4182b86b0fd4a4e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef LIGHT_H
#define LIGHT_H

#include "vertex.h"

typedef struct
{
    vec3_t position;
    vec4_t color;
    vec3_t attenuation;
} light_t;

#endif // LIGHT_H