#ifndef CONTROL_HPP #define CONTROL_HPP #include class Control{ public: //It returns the control that the program should //switch to. If it returns NULL the control should //stay the same. virtual Control* handle(GLFWwindow* win)=0; virtual void draw(float screenRatio)=0; //TODO: Remove this virtual void shutdown()=0; }; #endif