room101/LIGHT.HPP

16 lines
206 B
C++

#ifndef __LIGHT_H
#define __LIGHT_H
#include "vector.hpp"
#include "string.hpp"
typedef struct
{
Vector pos;
Vector rgb;
Vector pad;
String40 name;
} Light;
#endif