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

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

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

#endif