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

16 lines
No EOL
236 B
C++

#ifndef LEVEL2_H
#define LEVEL2_H
#include "GameLevel.h"
class Level2 : public GameLevel{
public:
Level2(){
for(int i=0;i<25;i++){
for(int j=0;j<15;j++){
}
}
}
};
#endif