Files
escape-the-dawn/Escape-the-Dawn/Components/Sprite.h
T
2014-03-06 21:32:31 +01:00

18 lines
244 B
C++

#ifndef Sprite_h__
#define Sprite_h__
#include "Component.h"
#include "Color.h"
namespace Components
{
struct Sprite : Component
{
std::string SpriteFile;
Color color;
};
REGISTER_COMPONENT("Sprite", Sprite);
}
#endif // !Sprite_h__