#pragma once #include #include "Component.h" namespace crepe { class Sprite : public Component { public: Sprite(std::string path); std::string path; }; }