added files

This commit is contained in:
2026-04-12 20:44:08 -07:00
commit 4588950b31
34 changed files with 1342 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#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