The Sprite struct holds information about the visual representation of an entity, specifically the path to its sprite image file.

namespace component {
        struct Sprite {
            std::string _pathToSprite;
        };
    }; // namespace component