aboutsummaryrefslogtreecommitdiffstats
path: root/include/World.h
blob: e4050598ac1036478625bc39a1e97c3afb654ea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef WORLD_H
#define WORLD_H

#include <common.h>

#define HLINE (2.0f/(SCREEN_WIDTH/4))

class World {
private:
	struct line_t {
		// x = 2.0 (window width) / HLINES
		double start; // Where to change to dirt, going down (y)
	} *line;
	unsigned int lineCount;
public:
	World(float width);
	void draw(void);
	void detect(vec2 *v,const float width);
};

#endif // WORLD_H