Files
2026-04-12 20:44:08 -07:00

13 lines
196 B
C++

#pragma once
#ifndef BOARD_H
#define BOARD_H
#include "getchar.h"
#include "structs.h"
#include <iostream>
void drawBoard();
bool isBrick(int, int);
int inputProccessing(Paddle &paddle);
#endif