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