#ifndef SHIP_GEN_HH #define SHIP_GEN_HH #include <pch.hh> #include <generators/fracGen.hh> namespace ty::gen { class shipGen : public fracGen { private: public: shipGen(const int& w, const int& h); ~shipGen(); void runGen(vector<unsigned char>& image) override; }; } // ty::gen #endif // SHIP_GEN_HH