summary refs log tree commit diff stats
path: root/board.h
blob: fdeefc9c47e0d2f6e528b7c2055b16b972f328c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef BOARD_H
#define BOARD_H

class Board
{
	private:
		bool blocks[WIDTH][HEIGHT];

	public:
		Board();
		Board(Level level);
		bool isObstructed(int x, int y);
		void render(SDL_Surface* screen, Level level);
};

#endif