#ifndef GRAPHICS_H_INCLUDED #define GRAPHICS_H_INCLUDED #include // 🦡 all over using namespace std; class Graphics { public: Graphics(const string &f, const string &p) : fill_color(f), pen(p) { } private: string fill_color, pen; }; // Internal function to translate color name to int int color(const string &name); #endif /* GRAPHICS_H_INCLUDED */