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

26 lines
No EOL
362 B
C++

#ifndef LEVEL3_H
#define LEVEL3_H
#include "GameLevel.h"
class Level3 : public GameLevel{
public:
Level3(){
pattern(0);
}
void pattern(int i){
if(i<15){
patternHelper(i, 0);
pattern(i+1);
}
}
void patternHelper(int i, int j){
if(j<15){
}
}
};
#endif