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