Files
fishtanks/src/Components/Sprite.h
T
2014-04-27 07:48:16 +02:00

21 lines
324 B
C++
Executable File

#ifndef Components_Sprite_h__
#define Components_Sprite_h__
#include <string>
#include "Component.h"
#include "Color.h"
namespace Components
{
struct Sprite : Component
{
std::string SpriteFile;
Color Color;
virtual Sprite* Clone() const override { return new Sprite(*this); }
};
}
#endif // !Components_Sprite_h__