dotfiles/.config/Code/User/History/a5c4c11/OWXF.cpp
RafayAhmad7548 ab03d5f10c test
2024-06-16 18:53:25 +05:00

15 lines
No EOL
240 B
C++

#include "GameLevel.h"
class Level1 : public GameLevel{
Level1(Paddle paddle, Ball ball) : GameLevel(paddle, ball){
for(int i=0;i<25;i++){
for(int j=0;j<15;j++){
}
}
}
};