This is one class from my program! When I\'m trying to compile the whole program, I get an error message like this:
main.cpp:174: error: \'((Scene*)this)
You've declared (but never defined) lake as a member function of Scene:
lake
class Scene { // ... Lake lake(int L);
But then in plot, you try to use lake as if it were a variable:
plot
int plot() { lake.light_up();