room101/LIGHT.HPP

17 lines
206 B
Text
Raw Permalink Normal View History

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