#ifndef WORLD_H#define WORLD_H#include <common.h>class World {private:struct line_t {// x = 2.0 (window width) / HLINESfloat start;// Where to change to dirt, going down (y)} *line;unsigned int lineCount;public:World(float width);voiddraw(void);};#endif// WORLD_H