├── .gitignore ├── .gitmodules ├── Bingo_game ├── assets │ ├── images │ │ ├── 1678386570619.jpeg │ │ └── logo.png │ └── sounds │ │ └── backgroundMusic.mp3 ├── index.html ├── readme.md ├── script.js └── style.css ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── games ├── 3D Snake Game │ ├── index.html │ ├── readme.md │ ├── script.js │ └── style.css ├── Aplhabetize-quiz │ ├── README.md │ └── main.py ├── Archive 2022 │ ├── 2048 Game │ │ ├── Readme.md │ │ ├── func.py │ │ ├── main.py │ │ └── snips │ │ │ └── snip1.png │ ├── AeroBlasters │ │ ├── README.md │ │ ├── gesturecontrol.py │ │ └── main.py │ ├── Aestroid Game │ │ └── code.py │ ├── Alien Invader Game │ │ ├── index.html │ │ ├── index.html - Personal - Microsoft​ Edge 2022-05-22 17-32-00.mp4 │ │ └── readme.md │ ├── Analog Clock │ │ ├── Clock.py │ │ └── readme.md │ ├── Angry Walls │ │ ├── game.py │ │ ├── gesture.py │ │ └── readme.md │ ├── Arkanoid │ │ └── README.md │ ├── Asteroids │ │ ├── game.py │ │ ├── gesture.py │ │ └── readme.md │ ├── Bagels Game │ │ ├── assets │ │ │ ├── flower.png │ │ │ ├── font.otf │ │ │ ├── mainchar │ │ │ │ ├── sprite_0.png │ │ │ │ ├── sprite_1.png │ │ │ │ └── sprite_2.png │ │ │ ├── road │ │ │ │ ├── sprite_0.png │ │ │ │ ├── sprite_1.png │ │ │ │ └── sprite_2.png │ │ │ ├── rock.png │ │ │ └── spritesheet │ │ │ │ └── running.png │ │ └── code.py │ ├── Ball Pool Game │ │ ├── README.md │ │ └── start.py │ ├── Balloon Popper Game │ │ ├── Balloon.py │ │ ├── Button.py │ │ ├── Engine.py │ │ ├── Instructions.py │ │ ├── Kitten.py │ │ ├── Readme.md │ │ ├── Scoreboard.py │ │ ├── Settings.py │ │ ├── Sword.py │ │ ├── green_balloon_50px.png │ │ ├── kitten_50px.png │ │ ├── main.py │ │ ├── snips │ │ │ └── snips.png │ │ └── sword_75px.png │ ├── Balloon Shooter │ │ ├── BalloonShooter.py │ │ ├── README.md │ │ └── img │ │ │ ├── add-readme.png │ │ │ └── ballss.png │ ├── Battle City Game │ │ ├── README.md │ │ ├── gesturecontrol.py │ │ ├── images │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 06.png │ │ │ ├── delete.py │ │ │ └── sprites.gif │ │ ├── levels │ │ │ ├── 1 │ │ │ ├── 2 │ │ │ ├── 3 │ │ │ ├── 4 │ │ │ ├── 5 │ │ │ ├── 6 │ │ │ ├── 7 │ │ │ ├── 8 │ │ │ ├── 9 │ │ │ ├── 10 │ │ │ ├── 11 │ │ │ ├── 12 │ │ │ ├── 13 │ │ │ ├── 14 │ │ │ ├── 15 │ │ │ ├── 16 │ │ │ ├── 17 │ │ │ ├── 18 │ │ │ ├── 19 │ │ │ ├── 20 │ │ │ ├── 21 │ │ │ ├── 22 │ │ │ ├── 23 │ │ │ ├── 24 │ │ │ ├── 25 │ │ │ ├── 26 │ │ │ ├── 27 │ │ │ ├── 28 │ │ │ ├── 29 │ │ │ ├── 30 │ │ │ ├── 31 │ │ │ ├── 32 │ │ │ ├── 33 │ │ │ ├── 34 │ │ │ ├── 35 │ │ │ └── delete.py │ │ └── tanks.py │ ├── Bed Time Stories │ │ └── code.py │ ├── Bounce │ │ ├── README.md │ │ ├── gesturecontrol.py │ │ ├── main.py │ │ └── player.py │ ├── Box Clear │ │ ├── README.md │ │ ├── icons │ │ │ ├── imgonline-com-ua-resize-MgAIfPaYv4DK8.png │ │ │ ├── mine.png │ │ │ └── sad.png │ │ └── start.py │ ├── Breakout-Game │ │ ├── README.md │ │ ├── img │ │ │ └── Web capture_4-5-2022_222250_127.0.0.1.jpeg │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Building Tower │ │ ├── README.md │ │ └── start.py │ ├── Cannon Game │ │ ├── code.py │ │ └── readme.md │ ├── Car Racing Game │ │ └── game.py │ ├── Car Racing │ │ ├── README.md │ │ ├── color.py │ │ ├── controlling_steer.py │ │ ├── directkeys.py │ │ ├── main.py │ │ ├── objects.py │ │ └── requirements.py │ ├── CardGame │ │ ├── card.py │ │ └── readme.md │ ├── Carrom │ │ ├── README.md │ │ └── start.py │ ├── Catterpiller Game │ │ ├── catter.py │ │ └── readme.md │ ├── Cave Story │ │ ├── README.md │ │ ├── gesturecontrol.py │ │ └── main.py │ ├── Checkers Game │ │ ├── Readme.md │ │ ├── checkers.py │ │ └── snips │ │ │ └── snip1.png │ ├── Chess Game │ │ ├── Readme.md │ │ ├── chessboard.py │ │ ├── main.py │ │ ├── pieces.py │ │ ├── pieces_image │ │ │ ├── bblack.png │ │ │ ├── bwhite.png │ │ │ ├── kblack.png │ │ │ ├── kwhite.png │ │ │ ├── nblack.png │ │ │ ├── nwhite.png │ │ │ ├── pblack.png │ │ │ ├── pwhite.png │ │ │ ├── qblack.png │ │ │ ├── qwhite.png │ │ │ ├── rblack.png │ │ │ └── rwhite.png │ │ ├── snips │ │ │ └── snip.png │ │ └── test.py │ ├── Chess-Game │ │ ├── Images │ │ │ ├── black_bishop.png │ │ │ ├── black_joker.png │ │ │ ├── black_king.png │ │ │ ├── black_knight.png │ │ │ ├── black_pawn.png │ │ │ ├── black_queen.png │ │ │ ├── black_rook.png │ │ │ ├── chess_icon.ico │ │ │ ├── white_bishop.png │ │ │ ├── white_joker.png │ │ │ ├── white_king.png │ │ │ ├── white_knight.png │ │ │ ├── white_pawn.png │ │ │ ├── white_queen.png │ │ │ └── white_rook.png │ │ ├── README.md │ │ ├── chess.py │ │ ├── gesturecontrol.py │ │ └── gui.py │ ├── Chrome Dino Game │ │ ├── Readme.md │ │ ├── main.py │ │ ├── snips │ │ │ └── snip.png │ │ └── sprites │ │ │ ├── cacti-big.png │ │ │ ├── cacti-small.png │ │ │ ├── checkPoint.wav │ │ │ ├── cloud.png │ │ │ ├── die.wav │ │ │ ├── dino.png │ │ │ ├── dino_ducking.png │ │ │ ├── game_over.png │ │ │ ├── ground.png │ │ │ ├── jump.wav │ │ │ ├── logo.png │ │ │ ├── numbers.png │ │ │ ├── offline-sprite-2x-black.png │ │ │ ├── ptera.png │ │ │ └── replay_button.png │ ├── Connect The Dots │ │ ├── Python Turtle Graphics 2022-05-20 19-14-49.mp4 │ │ ├── connect.py │ │ └── readme.md │ ├── Connected │ │ ├── README.md │ │ ├── gesturecontrol.py │ │ └── main.py │ ├── Cookie CLicker │ │ └── Cookie Clicker │ │ │ ├── cookie.py │ │ │ └── readme.md │ ├── Destroyer-Tank │ │ ├── README.md │ │ └── start.py │ ├── Dino Game │ │ ├── background.gif │ │ ├── cactus_small.gif │ │ ├── dino.py │ │ └── dinosaur.gif │ ├── Dino-Game │ │ ├── README.md │ │ ├── config.py │ │ ├── game.py │ │ └── gesturecontrol.py │ ├── Dodge Ball │ │ ├── README.md │ │ └── start.py │ ├── Dodge Game │ │ ├── dodge.py │ │ └── readme.md │ ├── Dodgy Walls │ │ ├── README.md │ │ ├── gesturecontrol.py │ │ └── main.py │ ├── Doodle Jump │ │ ├── Clouds.py │ │ ├── Clouds.pyc │ │ ├── Readme.md │ │ ├── background.jpg │ │ ├── background.png │ │ ├── blue_back.jpg │ │ ├── character.bmp │ │ ├── clouds_img │ │ │ ├── cloud1.png │ │ │ ├── cloud2.png │ │ │ ├── cloud3.png │ │ │ └── clouds.zip │ │ ├── doodlejump.py │ │ ├── enemies.py │ │ ├── enemies.pyc │ │ ├── highscore.txt │ │ ├── layer-1.png │ │ ├── layer-2.png │ │ ├── lowPlatform.py │ │ ├── lowPlatform.pyc │ │ ├── main.py │ │ ├── main.pyc │ │ ├── meowth1.png │ │ ├── meowth2.png │ │ ├── pikachu.png │ │ ├── platforms.py │ │ ├── platforms.pyc │ │ ├── player.py │ │ ├── player.pyc │ │ ├── powerup.py │ │ ├── powerup.pyc │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── snips │ │ │ └── snip1.png │ │ ├── sound │ │ │ ├── background_music.ogg │ │ │ ├── jump.ogg │ │ │ └── pow.wav │ │ ├── spritesheet_jumper.png │ │ ├── spritesheet_jumper.xml │ │ ├── spritesheets.py │ │ ├── spritesheets.pyc │ │ └── tile.png │ ├── Doremon Puzzle Game │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ ├── 9.jpg │ │ ├── README.md │ │ ├── doress.png │ │ ├── index.html │ │ ├── logo.png │ │ ├── puzzle.css │ │ └── puzzle.js │ ├── Dot Game │ │ ├── README.md │ │ └── start.py │ ├── Dots&Boxes │ │ ├── README.md │ │ ├── gesturecontrol.py │ │ └── main.py │ ├── Drop Ball │ │ ├── README.md │ │ └── start.py │ ├── Egg Catching Game │ │ ├── README.md │ │ ├── gesturecontrol.py │ │ └── main.py │ ├── Egg-Catcher │ │ ├── Egg_Catcher_Game.ipynb │ │ └── README.md │ ├── Fidget Spinner │ │ ├── fidget.py │ │ └── readme.md │ ├── Fighting Game │ │ ├── README.md │ │ ├── settings.txt │ │ └── start.py │ ├── Flappy Bird in Pythom │ │ ├── Python Turtle Graphics 2022-05-20 19-22-58.mp4 │ │ ├── flappy.py │ │ └── readme.md │ ├── Flappy Bird │ │ ├── README.md │ │ ├── gesturecontrol.py │ │ ├── main.py │ │ └── objects.py │ ├── Fruit Catch │ │ ├── README.md │ │ ├── high-score.txt │ │ ├── images │ │ │ ├── ananas.gif │ │ │ ├── apple.gif │ │ │ ├── candy1.gif │ │ │ ├── candy2.gif │ │ │ ├── jew.gif │ │ │ ├── lollypop.gif │ │ │ └── orange.gif │ │ └── start.py │ ├── Fruit Ninja Game │ │ ├── Readme.md │ │ ├── back.jpg │ │ ├── comic.ttf │ │ ├── images │ │ │ ├── backgound.jpg │ │ │ ├── bomb.png │ │ │ ├── explosion.png │ │ │ ├── game_over.png │ │ │ ├── guava.png │ │ │ ├── half_guava.png │ │ │ ├── half_melon.png │ │ │ ├── half_orange.png │ │ │ ├── half_pomegranate.png │ │ │ ├── melon.png │ │ │ ├── orange.png │ │ │ ├── pomegranate.png │ │ │ ├── red_lives.png │ │ │ └── white_lives.png │ │ ├── main.py │ │ └── snips │ │ │ └── snip.png │ ├── GhostBusters │ │ ├── README.md │ │ ├── gesturecontrol.py │ │ └── main.py │ ├── Ghostbusters Game │ │ └── game.py │ ├── Golf Game │ │ ├── IMG │ │ │ ├── back.png │ │ │ ├── coin1.png │ │ │ ├── coin2.png │ │ │ ├── coin3.png │ │ │ ├── course1.png │ │ │ ├── flag.png │ │ │ ├── green.png │ │ │ ├── laser.png │ │ │ ├── power.png │ │ │ ├── sand.png │ │ │ ├── sandBottom.png │ │ │ ├── sandEdge.png │ │ │ ├── sticky.png │ │ │ └── water.png │ │ ├── game.py │ │ ├── laws.py │ │ ├── level.py │ │ └── main.py │ ├── Guess Color │ │ ├── README.md │ │ ├── img │ │ │ └── game-console.ico │ │ └── start.py │ ├── Guess Me │ │ ├── game.py │ │ └── readme.md │ ├── Guess The Number │ │ ├── guess.py │ │ └── readme.md │ ├── Hangman Game using Python │ │ ├── Readme.md │ │ ├── a.png │ │ ├── b.png │ │ ├── c.png │ │ ├── d.png │ │ ├── e.png │ │ ├── exit.png │ │ ├── f.png │ │ ├── g.png │ │ ├── h.png │ │ ├── h1.png │ │ ├── h2.png │ │ ├── h3.png │ │ ├── h4.png │ │ ├── h5.png │ │ ├── h6.png │ │ ├── h7.png │ │ ├── hangman.py │ │ ├── i.png │ │ ├── j.png │ │ ├── k.png │ │ ├── l.png │ │ ├── m.png │ │ ├── n.png │ │ ├── o.png │ │ ├── p.png │ │ ├── q.png │ │ ├── r.png │ │ ├── s.png │ │ ├── snips │ │ │ └── snip1.png │ │ ├── t.png │ │ ├── u.png │ │ ├── v.png │ │ ├── w.png │ │ ├── words.txt │ │ ├── x.png │ │ ├── y.png │ │ └── z.png │ ├── Hangman Game │ │ ├── hangman.py │ │ └── readme.md │ ├── Hangman-Game │ │ ├── IMG │ │ │ ├── hangman0.png │ │ │ ├── hangman1.png │ │ │ ├── hangman2.png │ │ │ ├── hangman3.png │ │ │ ├── hangman4.png │ │ │ ├── hangman5.png │ │ │ └── hangman6.png │ │ ├── README.md │ │ └── game.py │ ├── Hey Life-Stimulation Game │ │ ├── game.py │ │ └── readme.md │ ├── Hyrdo Thunder │ │ └── README.md │ ├── Jungle Dash │ │ ├── README.md │ │ ├── main.py │ │ └── objects.py │ ├── Jungle Game │ │ └── game.py │ ├── Level Designer │ │ ├── README.md │ │ ├── game.py │ │ └── images │ │ │ ├── backgroundColorGrass.png │ │ │ └── delete.py │ ├── Love Calculator │ │ ├── love.py │ │ └── readme.md │ ├── Ludo Game │ │ ├── Browng.gif │ │ ├── Ludo Board.gif │ │ ├── Ludo Board.jpg │ │ ├── Ludo-game.py │ │ ├── Ludo.py │ │ ├── Readme.md │ │ ├── blue side.gif │ │ ├── blue.gif │ │ ├── bluebox.gif │ │ ├── bluestop.gif │ │ ├── bod.gif │ │ ├── center.gif │ │ ├── green side.gif │ │ ├── green.gif │ │ ├── greenbox.gif │ │ ├── greenstop.gif │ │ ├── head.gif │ │ ├── head1.gif │ │ ├── head2.gif │ │ ├── head3.gif │ │ ├── ludo_full_big.jpg │ │ ├── red side.gif │ │ ├── red.gif │ │ ├── redbox.gif │ │ ├── redstop.gif │ │ ├── snips │ │ │ └── snip1.png │ │ ├── tail.gif │ │ ├── tail1.gif │ │ ├── tail2.gif │ │ ├── tail3.gif │ │ ├── test.gif │ │ ├── whitebox.gif │ │ ├── yellow side.gif │ │ ├── yellow.gif │ │ ├── yellowbox.gif │ │ └── yellowstop.gif │ ├── LudoGame │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── README.md │ │ ├── ludo │ │ │ ├── __init__.py │ │ │ ├── cli.py │ │ │ ├── game.py │ │ │ ├── painter.py │ │ │ └── recorder.py │ │ └── run.py │ ├── Mario-Game │ │ ├── MarioGame.py │ │ ├── README.md │ │ ├── config.py │ │ ├── gesturecontrol.py │ │ └── requirements.txt │ ├── Matching Game │ │ ├── README.md │ │ ├── index.html │ │ ├── matchingss1.png │ │ ├── script.js │ │ └── style.css │ ├── Math Quiz │ │ └── quiz.py │ ├── Maze Game │ │ ├── README.md │ │ ├── main.py │ │ ├── maze.py │ │ └── maze_solver.py │ ├── Memory Card Game │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── Readme.md │ │ ├── card.py │ │ ├── memory.py │ │ └── snips │ │ │ └── snip1.png │ ├── Memory Game │ │ ├── memory.py │ │ └── readme.md │ ├── Memory Puzzle │ │ ├── README.md │ │ ├── game.py │ │ └── gesturecontrol.py │ ├── Mine Sweeper │ │ ├── README.md │ │ ├── game.py │ │ └── gesturecontrol.py │ ├── MineSweeer │ │ ├── Python Turtle Graphics 2022-05-21 18-29-10.mp4 │ │ ├── minesweeper.py │ │ └── readme.md │ ├── Missile Command │ │ └── README.md │ ├── Move Walls Game │ │ └── code.py │ ├── Number_Guesser │ │ ├── Guess Number.exe │ │ ├── GuessNumber.py │ │ └── README.md │ ├── OutRun │ │ └── README.md │ ├── PG_ZERO_GAME │ │ ├── 1.gif │ │ ├── README.md │ │ ├── images │ │ │ ├── bluebox.png │ │ │ ├── desertcity.png │ │ │ ├── greenbox.png │ │ │ ├── maxresdefault.jpg │ │ │ ├── mountain.png │ │ │ ├── mountain_back.jpg │ │ │ ├── night.png │ │ │ ├── player_cheer2.png │ │ │ ├── player_idle.png │ │ │ ├── player_jump.png │ │ │ ├── player_walk1.png │ │ │ ├── player_walk2.png │ │ │ ├── redbox.png │ │ │ ├── yellowbox.png │ │ │ └── zombie_walk1.png │ │ ├── main.py │ │ └── sounds │ │ │ ├── footstep_grass_004.ogg │ │ │ ├── maximize_004.ogg │ │ │ └── minimize_004.ogg │ ├── PacMan Game │ │ ├── PressStart2P-Regular.ttf │ │ ├── Readme.md │ │ ├── animation.py │ │ ├── constants.py │ │ ├── constants.py~ │ │ ├── entity.py │ │ ├── fruit.py │ │ ├── ghosts.py │ │ ├── junk.py │ │ ├── maze1.txt │ │ ├── maze1_rotation.txt │ │ ├── maze2.txt │ │ ├── maze2_rotation.txt │ │ ├── mazedata.py │ │ ├── mazes.py~ │ │ ├── mazetest.txt │ │ ├── modes.py │ │ ├── nodes.py │ │ ├── pacman.py │ │ ├── pauser.py │ │ ├── pellets.py │ │ ├── run.py │ │ ├── run.py~ │ │ ├── snips │ │ │ └── snip.png │ │ ├── sprites.py │ │ ├── spritesheet.png │ │ ├── spritesheet_mspacman.png │ │ ├── spritesheet_pacman2.png │ │ ├── text.py │ │ └── vector.py │ ├── Paint App │ │ ├── Readme.md │ │ ├── main.py │ │ └── snips │ │ │ └── snip1.png │ ├── Paint Game │ │ ├── paint.py │ │ └── readme.md │ ├── Paman Game │ │ ├── game.py │ │ └── readme.md │ ├── Password Generator Game │ │ ├── password.py │ │ └── readme.md │ ├── Pet Screen Game │ │ ├── pet.md │ │ └── pet.py │ ├── Piano Tiles │ │ ├── README.md │ │ ├── gesturecontrol.py │ │ ├── main.py │ │ └── notes.py │ ├── Pin Ball │ │ └── README.md │ ├── Pong Game │ │ ├── Ping-Pong Game 2022-05-20 18-35-40.mp4 │ │ ├── pong.py │ │ └── readme.md │ ├── Pong │ │ ├── Pong_bounce.wav │ │ └── pong.py │ ├── Pong1 │ │ ├── README.md │ │ └── game.py │ ├── Portal Game │ │ └── index.html │ ├── Quiz Game │ │ ├── Quiz.py │ │ └── readme.md │ ├── Quiz Math │ │ ├── README.md │ │ └── start.py │ ├── Race Car Game │ │ ├── README.MD │ │ ├── bg.jpg │ │ ├── car.png │ │ ├── index.html │ │ ├── main.js │ │ ├── style.css │ │ └── trfcar.png │ ├── Random Name Generator │ │ ├── randomname.py │ │ └── readme.md │ ├── Readme.txt.txt │ ├── Road-crossing-game-python │ │ ├── README.md │ │ ├── car_manager.py │ │ ├── main.py │ │ ├── player.py │ │ └── scoreboard.py │ ├── Rock ,Paper,scissor │ │ └── game │ │ │ ├── description.md │ │ │ └── rock,paper,scisoor_game.py │ ├── Rock Paper Scissor │ │ ├── game.py │ │ └── readme.md │ ├── Rock-Paper-Scissors-Game │ │ ├── game.py │ │ ├── gesture.py │ │ └── readme.md │ ├── Rubic Cube │ │ ├── README.md │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── RubikSolver │ │ ├── Rubik.py │ │ └── readme.md │ ├── Sanke Arcade Game │ │ ├── game.py │ │ └── readme.md │ ├── Shuffle Word Guess Game │ │ ├── Options │ │ │ ├── Animals.py │ │ │ ├── Body_parts.py │ │ │ ├── Colour.py │ │ │ ├── Fruit.py │ │ │ ├── Shapes.py │ │ │ ├── Vegetable.py │ │ │ └── Vehicles.py │ │ ├── Readme.md │ │ ├── back.png │ │ ├── index.py │ │ └── snips │ │ │ └── snip1.png │ ├── Simon Says Game │ │ ├── Readme.md │ │ ├── main.py │ │ └── snips │ │ │ └── snip1.png │ ├── Snake Game │ │ ├── assets │ │ │ ├── effects │ │ │ │ ├── music_eating.mp3 │ │ │ │ ├── music_gameover.mp3 │ │ │ │ └── music_move.mp3 │ │ │ └── img │ │ │ │ └── background.jpg │ │ ├── index.html │ │ ├── snake.css │ │ └── snake.js │ ├── Snake-Game │ │ ├── README.md │ │ ├── SnakeGame.py │ │ ├── game-control-using-object-tracking.py │ │ ├── object-detection.py │ │ └── requirements.txt │ ├── Snakes and Ladders Game │ │ ├── S&L.txt │ │ ├── dice.txt │ │ ├── img │ │ │ └── Board.png │ │ └── start.py │ ├── Snakes and Ladders │ │ ├── Readme.md │ │ ├── board.gif │ │ ├── diceMove.py │ │ ├── main.py │ │ ├── snips │ │ │ └── snip.png │ │ └── userInterface.py │ ├── Space Invaders Game │ │ ├── Readme.md │ │ ├── assets │ │ │ ├── background-black.png │ │ │ ├── pixel_laser_blue.png │ │ │ ├── pixel_laser_green.png │ │ │ ├── pixel_laser_red.png │ │ │ ├── pixel_laser_yellow.png │ │ │ ├── pixel_ship_blue_small.png │ │ │ ├── pixel_ship_green_small.png │ │ │ ├── pixel_ship_red_small.png │ │ │ └── pixel_ship_yellow.png │ │ ├── main.py │ │ └── snips │ │ │ └── snip1.png │ ├── Space Station Defence game │ │ ├── main.py │ │ └── space_station_defense_game_background.gif │ ├── Space War │ │ ├── README.md │ │ ├── img │ │ │ ├── add-readme (1).png │ │ │ └── spacess.png │ │ └── start.py │ ├── SpaceInvaders │ │ ├── Gesturecontrol.py │ │ ├── Pygame_original.py │ │ ├── Space Invaders.md │ │ ├── Space_invaders.md │ │ ├── alien.png │ │ ├── background.png │ │ ├── background.wav │ │ ├── bullet.png │ │ ├── example.jpg │ │ └── explosion.wav │ ├── Spaceship Game │ │ └── game.py │ ├── Sparkle Pointer │ │ ├── README.md │ │ └── main.py │ ├── SubwaySufer Game Using Pose Detection and mediapipe │ │ └── SubWay Sufers Game using Media Pipe and Posture Detection.ipynb │ ├── Sudoku Solver │ │ ├── css │ │ │ └── style.css │ │ ├── index.html │ │ ├── js │ │ │ └── script.js │ │ └── sudoku.py │ ├── Sudoku-game │ │ ├── Automatic-Sudoku-Solver.ipynb │ │ ├── Readme.md │ │ ├── assets │ │ │ ├── Input puzzle.png │ │ │ ├── binary graded puzzle.png │ │ │ ├── cropped puzzle.png │ │ │ ├── delete.py │ │ │ ├── digit extraction.png │ │ │ ├── grayscale puzzle.png │ │ │ ├── grid lines puzzle.png │ │ │ ├── intersection puzzle.png │ │ │ ├── pre-processed image.png │ │ │ └── sudoku outline.png │ │ └── sudoku-game.py │ ├── Tetris Game │ │ ├── Readme.md │ │ ├── snips │ │ │ └── snip.png │ │ └── tetris.py │ ├── Tetris │ │ ├── README.md │ │ ├── gesturecontrol.py │ │ └── main.py │ ├── The Maze │ │ ├── Python Turtle Graphics 2022-05-20 18-45-44.mp4 │ │ ├── maze.py │ │ └── readme.md │ ├── Tic Tac Toe Game │ │ ├── O.png │ │ ├── Readme.md │ │ ├── X.png │ │ ├── snips │ │ │ └── snip1.png │ │ ├── tic tac opening.png │ │ └── tictactoe.py │ ├── Tic Tac Toe │ │ ├── README.md │ │ ├── game.py │ │ ├── gesture.py │ │ ├── logic.py │ │ └── main.py │ ├── Tile Breaker Game │ │ ├── Readme.md │ │ ├── snips │ │ │ └── snip1.png │ │ └── tile-breaker.py │ ├── Tile-O-Tiles │ │ ├── readme.md │ │ └── tile.py │ ├── Traffic running │ │ ├── README.md │ │ ├── img │ │ │ ├── bg.jpg │ │ │ ├── car.png │ │ │ └── opponent car.png │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Tron Game │ │ └── game.py │ ├── Tron │ │ └── README.md │ ├── Turtle Game │ │ ├── README.md │ │ ├── img │ │ │ ├── add-read.png │ │ │ └── ss1turtle.png │ │ └── turtle-game.py │ ├── Typing Game │ │ ├── Readme.md │ │ ├── logo.ico │ │ ├── snips │ │ │ └── snip.png │ │ ├── typing-game.py │ │ └── words.py │ ├── Virtua Racing │ │ └── README.md │ ├── Word Game │ │ └── code.py │ ├── Word Guessing game │ │ ├── readme.md │ │ └── wordGuess.py │ ├── Wordle Game │ │ ├── readme.md │ │ └── wordle.py │ ├── Xexex │ │ └── README.md │ ├── color detection of an object │ │ ├── colorandshape.py │ │ └── test_image_2.png │ ├── delete.py │ ├── readme.md │ ├── sudoku.css │ ├── sudoku.html │ └── sudoku.js ├── Bagels │ ├── README.md │ └── bagels.py ├── Barca │ ├── README.md │ └── main.py ├── Basket_ball_game │ ├── index.html │ ├── js │ │ └── phaser.min.js │ ├── readme.md │ └── style.css ├── Black_zone_game │ ├── index.html │ ├── readme.md │ ├── script.js │ └── style.css ├── Breakout_game │ ├── index.html │ ├── readme.md │ ├── script.js │ └── style.css ├── Brick_break_game │ ├── Readme.md │ ├── index.html │ ├── script.js │ └── style.css ├── Cable_maze │ ├── index.html │ ├── main.js │ └── readme.md ├── Campfire │ ├── Readme.md │ └── campfire_game.py ├── Campfire_game │ ├── index.html │ ├── readme.md │ ├── script.js │ └── style.css ├── Car_Racing │ ├── README.md │ ├── images │ │ ├── 1icon.png │ │ ├── car04.png │ │ ├── cloud.jpg │ │ ├── finish.png │ │ ├── hero.png │ │ ├── icon.png │ │ └── tree.png │ ├── index.html │ ├── script.js │ └── style.css ├── Chance-Checkers │ ├── README.md │ └── main.py ├── Chess_game │ ├── index.html │ ├── pieces.js │ ├── readme.md │ ├── script.js │ └── style.css ├── Doodle_game │ ├── Readme.md │ ├── index.html │ ├── script.js │ └── stylr.css ├── Dragon-world-game │ ├── assets │ │ ├── cover.png │ │ ├── dragon.png │ │ ├── dragon_world.png │ │ └── obstacle.png │ ├── index.html │ ├── readme.md │ ├── script.js │ └── style.css ├── Ghost-Leg-Lottery │ ├── README.md │ └── main.py ├── Hit_me_toy │ ├── Hit-Me-Toy.py │ └── Readme.md ├── Ladoo_Catcher │ ├── CoreGame.py │ ├── Readme.md │ ├── asteroid.png │ ├── ladoo.png │ ├── ladoo_catcher.py │ └── net.png ├── Maze-Runner-2d │ ├── README.md │ └── main.py ├── Monalisa │ ├── README.md │ └── main.py ├── Non-uniform-Fractal-Tree-Drawer │ ├── README.md │ └── main.py ├── Paper_Plane │ ├── Paper_Plane.py │ ├── Paper_plane_gesture.py │ ├── Readme.md │ ├── background.jpg │ └── planne.png ├── Random-Walk │ ├── README.md │ └── main.py ├── Rotating-Game │ ├── README.md │ └── main.py ├── Sand-Simulator │ ├── README.md │ └── main.py ├── Sliding-Tile-Puzzle-Game │ ├── README.md │ └── main.py ├── Tic_Tac_Toe │ └── hardcodedtic.py ├── Tutorial-Guess │ ├── README.md │ └── main.py ├── Ulam-Spiral-Game │ ├── README.md │ └── main.py ├── Vaccum-Bot-Simulator │ ├── README.md │ └── main.py ├── Water-Bucket-Game │ ├── README.md │ └── main.py ├── Zig-Zag-Game │ ├── README.md │ └── main.py └── Zombie-Bite-Fight │ ├── README.md │ └── main.py ├── handtrack.py ├── main.py ├── requirements.txt └── screenshot ├── 1.png ├── 2.png └── 3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/.gitmodules -------------------------------------------------------------------------------- /Bingo_game/assets/images/1678386570619.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/Bingo_game/assets/images/1678386570619.jpeg -------------------------------------------------------------------------------- /Bingo_game/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/Bingo_game/assets/images/logo.png -------------------------------------------------------------------------------- /Bingo_game/assets/sounds/backgroundMusic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/Bingo_game/assets/sounds/backgroundMusic.mp3 -------------------------------------------------------------------------------- /Bingo_game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/Bingo_game/index.html -------------------------------------------------------------------------------- /Bingo_game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/Bingo_game/readme.md -------------------------------------------------------------------------------- /Bingo_game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/Bingo_game/script.js -------------------------------------------------------------------------------- /Bingo_game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/Bingo_game/style.css -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/README.md -------------------------------------------------------------------------------- /games/3D Snake Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/3D Snake Game/index.html -------------------------------------------------------------------------------- /games/3D Snake Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/3D Snake Game/readme.md -------------------------------------------------------------------------------- /games/3D Snake Game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/3D Snake Game/script.js -------------------------------------------------------------------------------- /games/3D Snake Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/3D Snake Game/style.css -------------------------------------------------------------------------------- /games/Aplhabetize-quiz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Aplhabetize-quiz/README.md -------------------------------------------------------------------------------- /games/Aplhabetize-quiz/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Aplhabetize-quiz/main.py -------------------------------------------------------------------------------- /games/Archive 2022/2048 Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/2048 Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/2048 Game/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/2048 Game/func.py -------------------------------------------------------------------------------- /games/Archive 2022/2048 Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/2048 Game/main.py -------------------------------------------------------------------------------- /games/Archive 2022/2048 Game/snips/snip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/2048 Game/snips/snip1.png -------------------------------------------------------------------------------- /games/Archive 2022/AeroBlasters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/AeroBlasters/README.md -------------------------------------------------------------------------------- /games/Archive 2022/AeroBlasters/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/AeroBlasters/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/AeroBlasters/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/AeroBlasters/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Aestroid Game/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Aestroid Game/code.py -------------------------------------------------------------------------------- /games/Archive 2022/Alien Invader Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Alien Invader Game/index.html -------------------------------------------------------------------------------- /games/Archive 2022/Alien Invader Game/readme.md: -------------------------------------------------------------------------------- 1 | o/p in folder 2 | -------------------------------------------------------------------------------- /games/Archive 2022/Analog Clock/Clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Analog Clock/Clock.py -------------------------------------------------------------------------------- /games/Archive 2022/Analog Clock/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Analog Clock/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Angry Walls/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Angry Walls/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Angry Walls/gesture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Angry Walls/gesture.py -------------------------------------------------------------------------------- /games/Archive 2022/Angry Walls/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Angry Walls/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Arkanoid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Arkanoid/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Asteroids/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Asteroids/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Asteroids/gesture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Asteroids/gesture.py -------------------------------------------------------------------------------- /games/Archive 2022/Asteroids/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Asteroids/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Bagels Game/assets/flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bagels Game/assets/flower.png -------------------------------------------------------------------------------- /games/Archive 2022/Bagels Game/assets/font.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bagels Game/assets/font.otf -------------------------------------------------------------------------------- /games/Archive 2022/Bagels Game/assets/mainchar/sprite_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bagels Game/assets/mainchar/sprite_0.png -------------------------------------------------------------------------------- /games/Archive 2022/Bagels Game/assets/mainchar/sprite_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bagels Game/assets/mainchar/sprite_1.png -------------------------------------------------------------------------------- /games/Archive 2022/Bagels Game/assets/mainchar/sprite_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bagels Game/assets/mainchar/sprite_2.png -------------------------------------------------------------------------------- /games/Archive 2022/Bagels Game/assets/road/sprite_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bagels Game/assets/road/sprite_0.png -------------------------------------------------------------------------------- /games/Archive 2022/Bagels Game/assets/road/sprite_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bagels Game/assets/road/sprite_1.png -------------------------------------------------------------------------------- /games/Archive 2022/Bagels Game/assets/road/sprite_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bagels Game/assets/road/sprite_2.png -------------------------------------------------------------------------------- /games/Archive 2022/Bagels Game/assets/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bagels Game/assets/rock.png -------------------------------------------------------------------------------- /games/Archive 2022/Bagels Game/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bagels Game/code.py -------------------------------------------------------------------------------- /games/Archive 2022/Ball Pool Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ball Pool Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Ball Pool Game/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ball Pool Game/start.py -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Popper Game/Balloon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Popper Game/Balloon.py -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Popper Game/Button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Popper Game/Button.py -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Popper Game/Engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Popper Game/Engine.py -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Popper Game/Instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Popper Game/Instructions.py -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Popper Game/Kitten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Popper Game/Kitten.py -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Popper Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Popper Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Popper Game/Scoreboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Popper Game/Scoreboard.py -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Popper Game/Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Popper Game/Settings.py -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Popper Game/Sword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Popper Game/Sword.py -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Popper Game/kitten_50px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Popper Game/kitten_50px.png -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Popper Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Popper Game/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Popper Game/snips/snips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Popper Game/snips/snips.png -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Popper Game/sword_75px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Popper Game/sword_75px.png -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Shooter/BalloonShooter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Shooter/BalloonShooter.py -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Shooter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Shooter/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Shooter/img/add-readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Shooter/img/add-readme.png -------------------------------------------------------------------------------- /games/Archive 2022/Balloon Shooter/img/ballss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Balloon Shooter/img/ballss.png -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/images/01.png -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/images/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/images/02.png -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/images/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/images/06.png -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/images/delete.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/images/sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/images/sprites.gif -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/1 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/10 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/11 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/12 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/13 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/14 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/15 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/16 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/17 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/18 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/19 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/2 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/20 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/21 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/22 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/23 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/24 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/25 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/26 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/27 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/28 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/29 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/3 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/30 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/31 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/32 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/33: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/33 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/34: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/34 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/35 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/4 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/5 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/6 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/7 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/8 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/levels/9 -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/levels/delete.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /games/Archive 2022/Battle City Game/tanks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Battle City Game/tanks.py -------------------------------------------------------------------------------- /games/Archive 2022/Bed Time Stories/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bed Time Stories/code.py -------------------------------------------------------------------------------- /games/Archive 2022/Bounce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bounce/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Bounce/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bounce/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/Bounce/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bounce/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Bounce/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Bounce/player.py -------------------------------------------------------------------------------- /games/Archive 2022/Box Clear/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Box Clear/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Box Clear/icons/mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Box Clear/icons/mine.png -------------------------------------------------------------------------------- /games/Archive 2022/Box Clear/icons/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Box Clear/icons/sad.png -------------------------------------------------------------------------------- /games/Archive 2022/Box Clear/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Box Clear/start.py -------------------------------------------------------------------------------- /games/Archive 2022/Breakout-Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Breakout-Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Breakout-Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Breakout-Game/index.html -------------------------------------------------------------------------------- /games/Archive 2022/Breakout-Game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Breakout-Game/script.js -------------------------------------------------------------------------------- /games/Archive 2022/Breakout-Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Breakout-Game/style.css -------------------------------------------------------------------------------- /games/Archive 2022/Building Tower/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Building Tower/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Building Tower/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Building Tower/start.py -------------------------------------------------------------------------------- /games/Archive 2022/Cannon Game/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Cannon Game/code.py -------------------------------------------------------------------------------- /games/Archive 2022/Cannon Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Cannon Game/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Car Racing Game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Car Racing Game/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Car Racing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Car Racing/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Car Racing/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Car Racing/color.py -------------------------------------------------------------------------------- /games/Archive 2022/Car Racing/controlling_steer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Car Racing/controlling_steer.py -------------------------------------------------------------------------------- /games/Archive 2022/Car Racing/directkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Car Racing/directkeys.py -------------------------------------------------------------------------------- /games/Archive 2022/Car Racing/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Car Racing/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Car Racing/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Car Racing/objects.py -------------------------------------------------------------------------------- /games/Archive 2022/Car Racing/requirements.py: -------------------------------------------------------------------------------- 1 | openCV 2 | conda 3 | imutils 4 | pyobjc-framework-Quartz -------------------------------------------------------------------------------- /games/Archive 2022/CardGame/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/CardGame/card.py -------------------------------------------------------------------------------- /games/Archive 2022/CardGame/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/CardGame/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Carrom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Carrom/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Carrom/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Carrom/start.py -------------------------------------------------------------------------------- /games/Archive 2022/Catterpiller Game/catter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Catterpiller Game/catter.py -------------------------------------------------------------------------------- /games/Archive 2022/Catterpiller Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Catterpiller Game/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Cave Story/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Cave Story/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Cave Story/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Cave Story/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/Cave Story/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Cave Story/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Checkers Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Checkers Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Checkers Game/checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Checkers Game/checkers.py -------------------------------------------------------------------------------- /games/Archive 2022/Checkers Game/snips/snip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Checkers Game/snips/snip1.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/chessboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/chessboard.py -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/pieces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/pieces.py -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/pieces_image/bblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/pieces_image/bblack.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/pieces_image/bwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/pieces_image/bwhite.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/pieces_image/kblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/pieces_image/kblack.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/pieces_image/kwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/pieces_image/kwhite.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/pieces_image/nblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/pieces_image/nblack.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/pieces_image/nwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/pieces_image/nwhite.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/pieces_image/pblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/pieces_image/pblack.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/pieces_image/pwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/pieces_image/pwhite.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/pieces_image/qblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/pieces_image/qblack.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/pieces_image/qwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/pieces_image/qwhite.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/pieces_image/rblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/pieces_image/rblack.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/pieces_image/rwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/pieces_image/rwhite.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/snips/snip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/snips/snip.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess Game/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess Game/test.py -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/black_bishop.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/black_joker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/black_joker.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/black_king.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/black_knight.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/black_pawn.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/black_queen.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/black_rook.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/chess_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/chess_icon.ico -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/white_bishop.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/white_joker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/white_joker.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/white_king.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/white_knight.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/white_pawn.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/white_queen.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/Images/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/Images/white_rook.png -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/chess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/chess.py -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/Chess-Game/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chess-Game/gui.py -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/snips/snip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/snips/snip.png -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/sprites/cacti-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/sprites/cacti-big.png -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/sprites/cacti-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/sprites/cacti-small.png -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/sprites/checkPoint.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/sprites/checkPoint.wav -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/sprites/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/sprites/cloud.png -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/sprites/die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/sprites/die.wav -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/sprites/dino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/sprites/dino.png -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/sprites/game_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/sprites/game_over.png -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/sprites/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/sprites/ground.png -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/sprites/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/sprites/jump.wav -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/sprites/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/sprites/logo.png -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/sprites/numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/sprites/numbers.png -------------------------------------------------------------------------------- /games/Archive 2022/Chrome Dino Game/sprites/ptera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Chrome Dino Game/sprites/ptera.png -------------------------------------------------------------------------------- /games/Archive 2022/Connect The Dots/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Connect The Dots/connect.py -------------------------------------------------------------------------------- /games/Archive 2022/Connect The Dots/readme.md: -------------------------------------------------------------------------------- 1 | o/p in folder 2 | -------------------------------------------------------------------------------- /games/Archive 2022/Connected/README.md: -------------------------------------------------------------------------------- 1 | ### Connected 2 | -------------------------------------------------------------------------------- /games/Archive 2022/Connected/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Connected/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/Connected/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Connected/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Cookie CLicker/Cookie Clicker/cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Cookie CLicker/Cookie Clicker/cookie.py -------------------------------------------------------------------------------- /games/Archive 2022/Destroyer-Tank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Destroyer-Tank/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Destroyer-Tank/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Destroyer-Tank/start.py -------------------------------------------------------------------------------- /games/Archive 2022/Dino Game/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dino Game/background.gif -------------------------------------------------------------------------------- /games/Archive 2022/Dino Game/cactus_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dino Game/cactus_small.gif -------------------------------------------------------------------------------- /games/Archive 2022/Dino Game/dino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dino Game/dino.py -------------------------------------------------------------------------------- /games/Archive 2022/Dino Game/dinosaur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dino Game/dinosaur.gif -------------------------------------------------------------------------------- /games/Archive 2022/Dino-Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dino-Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Dino-Game/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dino-Game/config.py -------------------------------------------------------------------------------- /games/Archive 2022/Dino-Game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dino-Game/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Dino-Game/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dino-Game/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/Dodge Ball/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dodge Ball/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Dodge Ball/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dodge Ball/start.py -------------------------------------------------------------------------------- /games/Archive 2022/Dodge Game/dodge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dodge Game/dodge.py -------------------------------------------------------------------------------- /games/Archive 2022/Dodge Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dodge Game/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Dodgy Walls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dodgy Walls/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Dodgy Walls/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dodgy Walls/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/Dodgy Walls/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dodgy Walls/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/Clouds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/Clouds.py -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/Clouds.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/Clouds.pyc -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/background.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/background.png -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/blue_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/blue_back.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/character.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/character.bmp -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/clouds_img/cloud1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/clouds_img/cloud1.png -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/clouds_img/cloud2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/clouds_img/cloud2.png -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/clouds_img/cloud3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/clouds_img/cloud3.png -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/clouds_img/clouds.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/clouds_img/clouds.zip -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/doodlejump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/doodlejump.py -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/enemies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/enemies.py -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/enemies.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/enemies.pyc -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/highscore.txt: -------------------------------------------------------------------------------- 1 | 1960 -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/layer-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/layer-1.png -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/layer-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/layer-2.png -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/lowPlatform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/lowPlatform.py -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/lowPlatform.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/lowPlatform.pyc -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/main.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/main.pyc -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/meowth1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/meowth1.png -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/meowth2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/meowth2.png -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/pikachu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/pikachu.png -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/platforms.py -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/platforms.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/platforms.pyc -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/player.py -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/player.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/player.pyc -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/powerup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/powerup.py -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/powerup.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/powerup.pyc -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/settings.py -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/settings.pyc -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/snips/snip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/snips/snip1.png -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/sound/jump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/sound/jump.ogg -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/sound/pow.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/sound/pow.wav -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/spritesheet_jumper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/spritesheet_jumper.png -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/spritesheet_jumper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/spritesheet_jumper.xml -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/spritesheets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/spritesheets.py -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/spritesheets.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/spritesheets.pyc -------------------------------------------------------------------------------- /games/Archive 2022/Doodle Jump/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doodle Jump/tile.png -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/1.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/10.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/2.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/3.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/4.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/5.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/6.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/7.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/8.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/9.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/doress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/doress.png -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/index.html -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/logo.png -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/puzzle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/puzzle.css -------------------------------------------------------------------------------- /games/Archive 2022/Doremon Puzzle Game/puzzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Doremon Puzzle Game/puzzle.js -------------------------------------------------------------------------------- /games/Archive 2022/Dot Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dot Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Dot Game/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dot Game/start.py -------------------------------------------------------------------------------- /games/Archive 2022/Dots&Boxes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dots&Boxes/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Dots&Boxes/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dots&Boxes/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/Dots&Boxes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Dots&Boxes/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Drop Ball/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Drop Ball/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Drop Ball/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Drop Ball/start.py -------------------------------------------------------------------------------- /games/Archive 2022/Egg Catching Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Egg Catching Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Egg Catching Game/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Egg Catching Game/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/Egg Catching Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Egg Catching Game/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Egg-Catcher/Egg_Catcher_Game.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Egg-Catcher/Egg_Catcher_Game.ipynb -------------------------------------------------------------------------------- /games/Archive 2022/Egg-Catcher/README.md: -------------------------------------------------------------------------------- 1 | # Egg_Catcher_Game -------------------------------------------------------------------------------- /games/Archive 2022/Fidget Spinner/fidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fidget Spinner/fidget.py -------------------------------------------------------------------------------- /games/Archive 2022/Fidget Spinner/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fidget Spinner/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Fighting Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fighting Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Fighting Game/settings.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /games/Archive 2022/Fighting Game/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fighting Game/start.py -------------------------------------------------------------------------------- /games/Archive 2022/Flappy Bird in Pythom/flappy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Flappy Bird in Pythom/flappy.py -------------------------------------------------------------------------------- /games/Archive 2022/Flappy Bird in Pythom/readme.md: -------------------------------------------------------------------------------- 1 | O/P in folder 2 | -------------------------------------------------------------------------------- /games/Archive 2022/Flappy Bird/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Flappy Bird/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Flappy Bird/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Flappy Bird/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/Flappy Bird/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Flappy Bird/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Flappy Bird/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Flappy Bird/objects.py -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Catch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Catch/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Catch/high-score.txt: -------------------------------------------------------------------------------- 1 | 2500 -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Catch/images/ananas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Catch/images/ananas.gif -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Catch/images/apple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Catch/images/apple.gif -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Catch/images/candy1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Catch/images/candy1.gif -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Catch/images/candy2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Catch/images/candy2.gif -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Catch/images/jew.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Catch/images/jew.gif -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Catch/images/lollypop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Catch/images/lollypop.gif -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Catch/images/orange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Catch/images/orange.gif -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Catch/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Catch/start.py -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Ninja Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Ninja Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Ninja Game/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Ninja Game/back.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Ninja Game/comic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Ninja Game/comic.ttf -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Ninja Game/images/backgound.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Ninja Game/images/backgound.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Ninja Game/images/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Ninja Game/images/bomb.png -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Ninja Game/images/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Ninja Game/images/explosion.png -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Ninja Game/images/game_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Ninja Game/images/game_over.png -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Ninja Game/images/guava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Ninja Game/images/guava.png -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Ninja Game/images/melon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Ninja Game/images/melon.png -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Ninja Game/images/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Ninja Game/images/orange.png -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Ninja Game/images/red_lives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Ninja Game/images/red_lives.png -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Ninja Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Ninja Game/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Fruit Ninja Game/snips/snip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Fruit Ninja Game/snips/snip.png -------------------------------------------------------------------------------- /games/Archive 2022/GhostBusters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/GhostBusters/README.md -------------------------------------------------------------------------------- /games/Archive 2022/GhostBusters/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/GhostBusters/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/GhostBusters/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/GhostBusters/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Ghostbusters Game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ghostbusters Game/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/IMG/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/IMG/back.png -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/IMG/coin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/IMG/coin1.png -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/IMG/coin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/IMG/coin2.png -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/IMG/coin3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/IMG/coin3.png -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/IMG/course1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/IMG/course1.png -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/IMG/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/IMG/flag.png -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/IMG/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/IMG/green.png -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/IMG/laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/IMG/laser.png -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/IMG/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/IMG/power.png -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/IMG/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/IMG/sand.png -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/IMG/sandBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/IMG/sandBottom.png -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/IMG/sandEdge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/IMG/sandEdge.png -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/IMG/sticky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/IMG/sticky.png -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/IMG/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/IMG/water.png -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/laws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/laws.py -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/level.py -------------------------------------------------------------------------------- /games/Archive 2022/Golf Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Golf Game/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Guess Color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Guess Color/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Guess Color/img/game-console.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Guess Color/img/game-console.ico -------------------------------------------------------------------------------- /games/Archive 2022/Guess Color/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Guess Color/start.py -------------------------------------------------------------------------------- /games/Archive 2022/Guess Me/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Guess Me/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Guess Me/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Guess Me/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Guess The Number/guess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Guess The Number/guess.py -------------------------------------------------------------------------------- /games/Archive 2022/Guess The Number/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Guess The Number/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/a.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/b.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/c.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/d.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/e.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/exit.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/f.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/g.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/h.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/h1.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/h2.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/h3.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/h4.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/h5.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/h6.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/h7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/h7.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/hangman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/hangman.py -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/i.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/j.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/k.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/l.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/m.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/n.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/o.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/p.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/q.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/r.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/s.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/t.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/u.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/v.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/w.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/words.txt -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/x.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/y.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game using Python/z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game using Python/z.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game/hangman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman Game/hangman.py -------------------------------------------------------------------------------- /games/Archive 2022/Hangman Game/readme.md: -------------------------------------------------------------------------------- 1 | # HANGMAN GAME: 2 | > IT's a simple 3 | 4 | ## Tech Stack Used: 5 | **PYTHON** -------------------------------------------------------------------------------- /games/Archive 2022/Hangman-Game/IMG/hangman0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman-Game/IMG/hangman0.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman-Game/IMG/hangman1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman-Game/IMG/hangman1.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman-Game/IMG/hangman2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman-Game/IMG/hangman2.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman-Game/IMG/hangman3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman-Game/IMG/hangman3.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman-Game/IMG/hangman4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman-Game/IMG/hangman4.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman-Game/IMG/hangman5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman-Game/IMG/hangman5.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman-Game/IMG/hangman6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman-Game/IMG/hangman6.png -------------------------------------------------------------------------------- /games/Archive 2022/Hangman-Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman-Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Hangman-Game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hangman-Game/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Hey Life-Stimulation Game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hey Life-Stimulation Game/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Hey Life-Stimulation Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hey Life-Stimulation Game/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Hyrdo Thunder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Hyrdo Thunder/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Jungle Dash/README.md: -------------------------------------------------------------------------------- 1 | ### Jungle Dash 2 | -------------------------------------------------------------------------------- /games/Archive 2022/Jungle Dash/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Jungle Dash/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Jungle Dash/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Jungle Dash/objects.py -------------------------------------------------------------------------------- /games/Archive 2022/Jungle Game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Jungle Game/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Level Designer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Level Designer/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Level Designer/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Level Designer/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Level Designer/images/delete.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /games/Archive 2022/Love Calculator/love.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Love Calculator/love.py -------------------------------------------------------------------------------- /games/Archive 2022/Love Calculator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Love Calculator/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/Browng.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/Browng.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/Ludo Board.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/Ludo Board.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/Ludo Board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/Ludo Board.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/Ludo-game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/Ludo-game.py -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/Ludo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/Ludo.py -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/blue side.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/blue side.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/blue.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/bluebox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/bluebox.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/bluestop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/bluestop.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/bod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/bod.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/center.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/green side.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/green side.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/green.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/greenbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/greenbox.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/greenstop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/greenstop.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/head.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/head.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/head1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/head1.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/head2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/head2.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/head3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/head3.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/ludo_full_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/ludo_full_big.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/red side.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/red side.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/red.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/redbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/redbox.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/redstop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/redstop.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/snips/snip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/snips/snip1.png -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/tail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/tail.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/tail1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/tail1.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/tail2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/tail2.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/tail3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/tail3.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/test.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/whitebox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/whitebox.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/yellow side.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/yellow side.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/yellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/yellow.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/yellowbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/yellowbox.gif -------------------------------------------------------------------------------- /games/Archive 2022/Ludo Game/yellowstop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Ludo Game/yellowstop.gif -------------------------------------------------------------------------------- /games/Archive 2022/LudoGame/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/LudoGame/1.png -------------------------------------------------------------------------------- /games/Archive 2022/LudoGame/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/LudoGame/2.png -------------------------------------------------------------------------------- /games/Archive 2022/LudoGame/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/LudoGame/3.png -------------------------------------------------------------------------------- /games/Archive 2022/LudoGame/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/LudoGame/4.png -------------------------------------------------------------------------------- /games/Archive 2022/LudoGame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/LudoGame/README.md -------------------------------------------------------------------------------- /games/Archive 2022/LudoGame/ludo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/Archive 2022/LudoGame/ludo/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/LudoGame/ludo/cli.py -------------------------------------------------------------------------------- /games/Archive 2022/LudoGame/ludo/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/LudoGame/ludo/game.py -------------------------------------------------------------------------------- /games/Archive 2022/LudoGame/ludo/painter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/LudoGame/ludo/painter.py -------------------------------------------------------------------------------- /games/Archive 2022/LudoGame/ludo/recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/LudoGame/ludo/recorder.py -------------------------------------------------------------------------------- /games/Archive 2022/LudoGame/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/LudoGame/run.py -------------------------------------------------------------------------------- /games/Archive 2022/Mario-Game/MarioGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Mario-Game/MarioGame.py -------------------------------------------------------------------------------- /games/Archive 2022/Mario-Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Mario-Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Mario-Game/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Mario-Game/config.py -------------------------------------------------------------------------------- /games/Archive 2022/Mario-Game/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Mario-Game/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/Mario-Game/requirements.txt: -------------------------------------------------------------------------------- 1 | pygame 2 | sys 3 | -------------------------------------------------------------------------------- /games/Archive 2022/Matching Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Matching Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Matching Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Matching Game/index.html -------------------------------------------------------------------------------- /games/Archive 2022/Matching Game/matchingss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Matching Game/matchingss1.png -------------------------------------------------------------------------------- /games/Archive 2022/Matching Game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Matching Game/script.js -------------------------------------------------------------------------------- /games/Archive 2022/Matching Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Matching Game/style.css -------------------------------------------------------------------------------- /games/Archive 2022/Math Quiz/quiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Math Quiz/quiz.py -------------------------------------------------------------------------------- /games/Archive 2022/Maze Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Maze Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Maze Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Maze Game/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Maze Game/maze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Maze Game/maze.py -------------------------------------------------------------------------------- /games/Archive 2022/Maze Game/maze_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Maze Game/maze_solver.py -------------------------------------------------------------------------------- /games/Archive 2022/Memory Card Game/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Memory Card Game/OpenSans-Light.ttf -------------------------------------------------------------------------------- /games/Archive 2022/Memory Card Game/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Memory Card Game/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /games/Archive 2022/Memory Card Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Memory Card Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Memory Card Game/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Memory Card Game/card.py -------------------------------------------------------------------------------- /games/Archive 2022/Memory Card Game/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Memory Card Game/memory.py -------------------------------------------------------------------------------- /games/Archive 2022/Memory Card Game/snips/snip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Memory Card Game/snips/snip1.png -------------------------------------------------------------------------------- /games/Archive 2022/Memory Game/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Memory Game/memory.py -------------------------------------------------------------------------------- /games/Archive 2022/Memory Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Memory Game/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Memory Puzzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Memory Puzzle/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Memory Puzzle/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Memory Puzzle/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Memory Puzzle/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Memory Puzzle/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/Mine Sweeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Mine Sweeper/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Mine Sweeper/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Mine Sweeper/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Mine Sweeper/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Mine Sweeper/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/MineSweeer/minesweeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/MineSweeer/minesweeper.py -------------------------------------------------------------------------------- /games/Archive 2022/MineSweeer/readme.md: -------------------------------------------------------------------------------- 1 | o/p inf folder 2 | -------------------------------------------------------------------------------- /games/Archive 2022/Missile Command/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Missile Command/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Move Walls Game/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Move Walls Game/code.py -------------------------------------------------------------------------------- /games/Archive 2022/Number_Guesser/Guess Number.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Number_Guesser/Guess Number.exe -------------------------------------------------------------------------------- /games/Archive 2022/Number_Guesser/GuessNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Number_Guesser/GuessNumber.py -------------------------------------------------------------------------------- /games/Archive 2022/Number_Guesser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Number_Guesser/README.md -------------------------------------------------------------------------------- /games/Archive 2022/OutRun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/OutRun/README.md -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/1.gif -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/README.md -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/bluebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/bluebox.png -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/desertcity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/desertcity.png -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/greenbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/greenbox.png -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/maxresdefault.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/maxresdefault.jpg -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/mountain.png -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/mountain_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/mountain_back.jpg -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/night.png -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/player_cheer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/player_cheer2.png -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/player_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/player_idle.png -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/player_jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/player_jump.png -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/player_walk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/player_walk1.png -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/player_walk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/player_walk2.png -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/redbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/redbox.png -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/yellowbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/yellowbox.png -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/images/zombie_walk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/images/zombie_walk1.png -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/main.py -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/sounds/maximize_004.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/sounds/maximize_004.ogg -------------------------------------------------------------------------------- /games/Archive 2022/PG_ZERO_GAME/sounds/minimize_004.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PG_ZERO_GAME/sounds/minimize_004.ogg -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/PressStart2P-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/PressStart2P-Regular.ttf -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/animation.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/constants.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/constants.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/constants.py~ -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/entity.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/fruit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/fruit.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/ghosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/ghosts.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/junk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/junk.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/maze1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/maze1.txt -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/maze1_rotation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/maze1_rotation.txt -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/maze2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/maze2.txt -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/maze2_rotation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/maze2_rotation.txt -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/mazedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/mazedata.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/mazes.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/mazes.py~ -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/mazetest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/mazetest.txt -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/modes.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/nodes.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/pacman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/pacman.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/pauser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/pauser.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/pellets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/pellets.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/run.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/run.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/run.py~ -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/snips/snip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/snips/snip.png -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/sprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/sprites.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/spritesheet.png -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/spritesheet_mspacman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/spritesheet_mspacman.png -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/spritesheet_pacman2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/spritesheet_pacman2.png -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/text.py -------------------------------------------------------------------------------- /games/Archive 2022/PacMan Game/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/PacMan Game/vector.py -------------------------------------------------------------------------------- /games/Archive 2022/Paint App/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Paint App/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Paint App/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Paint App/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Paint App/snips/snip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Paint App/snips/snip1.png -------------------------------------------------------------------------------- /games/Archive 2022/Paint Game/paint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Paint Game/paint.py -------------------------------------------------------------------------------- /games/Archive 2022/Paint Game/readme.md: -------------------------------------------------------------------------------- 1 | # PAINT GAME 2 | 3 | It's a Paint Game. 4 | 5 | ## Tech Stack: 6 | **Python** -------------------------------------------------------------------------------- /games/Archive 2022/Paman Game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Paman Game/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Paman Game/readme.md: -------------------------------------------------------------------------------- 1 | Run simply after pip install freegames to play 2 | -------------------------------------------------------------------------------- /games/Archive 2022/Password Generator Game/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Password Generator Game/password.py -------------------------------------------------------------------------------- /games/Archive 2022/Password Generator Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Password Generator Game/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Pet Screen Game/pet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Pet Screen Game/pet.md -------------------------------------------------------------------------------- /games/Archive 2022/Pet Screen Game/pet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Pet Screen Game/pet.py -------------------------------------------------------------------------------- /games/Archive 2022/Piano Tiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Piano Tiles/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Piano Tiles/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Piano Tiles/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/Piano Tiles/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Piano Tiles/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Piano Tiles/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Piano Tiles/notes.py -------------------------------------------------------------------------------- /games/Archive 2022/Pin Ball/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Pin Ball/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Pong Game/pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Pong Game/pong.py -------------------------------------------------------------------------------- /games/Archive 2022/Pong Game/readme.md: -------------------------------------------------------------------------------- 1 | find output video in folder 2 | -------------------------------------------------------------------------------- /games/Archive 2022/Pong/Pong_bounce.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Pong/Pong_bounce.wav -------------------------------------------------------------------------------- /games/Archive 2022/Pong/pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Pong/pong.py -------------------------------------------------------------------------------- /games/Archive 2022/Pong1/README.md: -------------------------------------------------------------------------------- 1 | ### Pong 2 | -------------------------------------------------------------------------------- /games/Archive 2022/Pong1/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Pong1/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Portal Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Portal Game/index.html -------------------------------------------------------------------------------- /games/Archive 2022/Quiz Game/Quiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Quiz Game/Quiz.py -------------------------------------------------------------------------------- /games/Archive 2022/Quiz Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Quiz Game/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Quiz Math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Quiz Math/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Quiz Math/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Quiz Math/start.py -------------------------------------------------------------------------------- /games/Archive 2022/Race Car Game/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Race Car Game/README.MD -------------------------------------------------------------------------------- /games/Archive 2022/Race Car Game/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Race Car Game/bg.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Race Car Game/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Race Car Game/car.png -------------------------------------------------------------------------------- /games/Archive 2022/Race Car Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Race Car Game/index.html -------------------------------------------------------------------------------- /games/Archive 2022/Race Car Game/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Race Car Game/main.js -------------------------------------------------------------------------------- /games/Archive 2022/Race Car Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Race Car Game/style.css -------------------------------------------------------------------------------- /games/Archive 2022/Race Car Game/trfcar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Race Car Game/trfcar.png -------------------------------------------------------------------------------- /games/Archive 2022/Random Name Generator/randomname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Random Name Generator/randomname.py -------------------------------------------------------------------------------- /games/Archive 2022/Random Name Generator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Random Name Generator/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Readme.txt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Readme.txt.txt -------------------------------------------------------------------------------- /games/Archive 2022/Road-crossing-game-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Road-crossing-game-python/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Road-crossing-game-python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Road-crossing-game-python/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Road-crossing-game-python/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Road-crossing-game-python/player.py -------------------------------------------------------------------------------- /games/Archive 2022/Rock Paper Scissor/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Rock Paper Scissor/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Rock Paper Scissor/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Rock Paper Scissor/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Rock-Paper-Scissors-Game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Rock-Paper-Scissors-Game/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Rock-Paper-Scissors-Game/gesture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Rock-Paper-Scissors-Game/gesture.py -------------------------------------------------------------------------------- /games/Archive 2022/Rock-Paper-Scissors-Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Rock-Paper-Scissors-Game/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Rubic Cube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Rubic Cube/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Rubic Cube/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Rubic Cube/index.html -------------------------------------------------------------------------------- /games/Archive 2022/Rubic Cube/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Rubic Cube/script.js -------------------------------------------------------------------------------- /games/Archive 2022/Rubic Cube/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Rubic Cube/style.css -------------------------------------------------------------------------------- /games/Archive 2022/RubikSolver/Rubik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/RubikSolver/Rubik.py -------------------------------------------------------------------------------- /games/Archive 2022/RubikSolver/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/RubikSolver/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Sanke Arcade Game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Sanke Arcade Game/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Sanke Arcade Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Sanke Arcade Game/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Shuffle Word Guess Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Shuffle Word Guess Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Shuffle Word Guess Game/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Shuffle Word Guess Game/back.png -------------------------------------------------------------------------------- /games/Archive 2022/Shuffle Word Guess Game/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Shuffle Word Guess Game/index.py -------------------------------------------------------------------------------- /games/Archive 2022/Simon Says Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Simon Says Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Simon Says Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Simon Says Game/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Simon Says Game/snips/snip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Simon Says Game/snips/snip1.png -------------------------------------------------------------------------------- /games/Archive 2022/Snake Game/assets/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snake Game/assets/img/background.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Snake Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snake Game/index.html -------------------------------------------------------------------------------- /games/Archive 2022/Snake Game/snake.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snake Game/snake.css -------------------------------------------------------------------------------- /games/Archive 2022/Snake Game/snake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snake Game/snake.js -------------------------------------------------------------------------------- /games/Archive 2022/Snake-Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snake-Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Snake-Game/SnakeGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snake-Game/SnakeGame.py -------------------------------------------------------------------------------- /games/Archive 2022/Snake-Game/object-detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snake-Game/object-detection.py -------------------------------------------------------------------------------- /games/Archive 2022/Snake-Game/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snake-Game/requirements.txt -------------------------------------------------------------------------------- /games/Archive 2022/Snakes and Ladders Game/S&L.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snakes and Ladders Game/S&L.txt -------------------------------------------------------------------------------- /games/Archive 2022/Snakes and Ladders Game/dice.txt: -------------------------------------------------------------------------------- 1 | ⚀⚁⚂⚃⚄⚅ -------------------------------------------------------------------------------- /games/Archive 2022/Snakes and Ladders Game/img/Board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snakes and Ladders Game/img/Board.png -------------------------------------------------------------------------------- /games/Archive 2022/Snakes and Ladders Game/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snakes and Ladders Game/start.py -------------------------------------------------------------------------------- /games/Archive 2022/Snakes and Ladders/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snakes and Ladders/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Snakes and Ladders/board.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snakes and Ladders/board.gif -------------------------------------------------------------------------------- /games/Archive 2022/Snakes and Ladders/diceMove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snakes and Ladders/diceMove.py -------------------------------------------------------------------------------- /games/Archive 2022/Snakes and Ladders/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snakes and Ladders/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Snakes and Ladders/snips/snip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snakes and Ladders/snips/snip.png -------------------------------------------------------------------------------- /games/Archive 2022/Snakes and Ladders/userInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Snakes and Ladders/userInterface.py -------------------------------------------------------------------------------- /games/Archive 2022/Space Invaders Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Space Invaders Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Space Invaders Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Space Invaders Game/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Space Invaders Game/snips/snip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Space Invaders Game/snips/snip1.png -------------------------------------------------------------------------------- /games/Archive 2022/Space Station Defence game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Space Station Defence game/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Space War/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Space War/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Space War/img/add-readme (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Space War/img/add-readme (1).png -------------------------------------------------------------------------------- /games/Archive 2022/Space War/img/spacess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Space War/img/spacess.png -------------------------------------------------------------------------------- /games/Archive 2022/Space War/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Space War/start.py -------------------------------------------------------------------------------- /games/Archive 2022/SpaceInvaders/Gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/SpaceInvaders/Gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/SpaceInvaders/Pygame_original.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/SpaceInvaders/Pygame_original.py -------------------------------------------------------------------------------- /games/Archive 2022/SpaceInvaders/Space Invaders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/SpaceInvaders/Space Invaders.md -------------------------------------------------------------------------------- /games/Archive 2022/SpaceInvaders/Space_invaders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/SpaceInvaders/Space_invaders.md -------------------------------------------------------------------------------- /games/Archive 2022/SpaceInvaders/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/SpaceInvaders/alien.png -------------------------------------------------------------------------------- /games/Archive 2022/SpaceInvaders/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/SpaceInvaders/background.png -------------------------------------------------------------------------------- /games/Archive 2022/SpaceInvaders/background.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/SpaceInvaders/background.wav -------------------------------------------------------------------------------- /games/Archive 2022/SpaceInvaders/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/SpaceInvaders/bullet.png -------------------------------------------------------------------------------- /games/Archive 2022/SpaceInvaders/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/SpaceInvaders/example.jpg -------------------------------------------------------------------------------- /games/Archive 2022/SpaceInvaders/explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/SpaceInvaders/explosion.wav -------------------------------------------------------------------------------- /games/Archive 2022/Spaceship Game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Spaceship Game/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Sparkle Pointer/README.md: -------------------------------------------------------------------------------- 1 | ## Sparkle Pointer 2 | -------------------------------------------------------------------------------- /games/Archive 2022/Sparkle Pointer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Sparkle Pointer/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Sudoku Solver/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Sudoku Solver/css/style.css -------------------------------------------------------------------------------- /games/Archive 2022/Sudoku Solver/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Sudoku Solver/index.html -------------------------------------------------------------------------------- /games/Archive 2022/Sudoku Solver/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Sudoku Solver/js/script.js -------------------------------------------------------------------------------- /games/Archive 2022/Sudoku Solver/sudoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Sudoku Solver/sudoku.py -------------------------------------------------------------------------------- /games/Archive 2022/Sudoku-game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Sudoku-game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Sudoku-game/assets/Input puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Sudoku-game/assets/Input puzzle.png -------------------------------------------------------------------------------- /games/Archive 2022/Sudoku-game/assets/cropped puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Sudoku-game/assets/cropped puzzle.png -------------------------------------------------------------------------------- /games/Archive 2022/Sudoku-game/assets/delete.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /games/Archive 2022/Sudoku-game/assets/sudoku outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Sudoku-game/assets/sudoku outline.png -------------------------------------------------------------------------------- /games/Archive 2022/Sudoku-game/sudoku-game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Sudoku-game/sudoku-game.py -------------------------------------------------------------------------------- /games/Archive 2022/Tetris Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tetris Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Tetris Game/snips/snip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tetris Game/snips/snip.png -------------------------------------------------------------------------------- /games/Archive 2022/Tetris Game/tetris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tetris Game/tetris.py -------------------------------------------------------------------------------- /games/Archive 2022/Tetris/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tetris/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Tetris/gesturecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tetris/gesturecontrol.py -------------------------------------------------------------------------------- /games/Archive 2022/Tetris/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tetris/main.py -------------------------------------------------------------------------------- /games/Archive 2022/The Maze/maze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/The Maze/maze.py -------------------------------------------------------------------------------- /games/Archive 2022/The Maze/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/The Maze/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Tic Tac Toe Game/O.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tic Tac Toe Game/O.png -------------------------------------------------------------------------------- /games/Archive 2022/Tic Tac Toe Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tic Tac Toe Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Tic Tac Toe Game/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tic Tac Toe Game/X.png -------------------------------------------------------------------------------- /games/Archive 2022/Tic Tac Toe Game/snips/snip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tic Tac Toe Game/snips/snip1.png -------------------------------------------------------------------------------- /games/Archive 2022/Tic Tac Toe Game/tic tac opening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tic Tac Toe Game/tic tac opening.png -------------------------------------------------------------------------------- /games/Archive 2022/Tic Tac Toe Game/tictactoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tic Tac Toe Game/tictactoe.py -------------------------------------------------------------------------------- /games/Archive 2022/Tic Tac Toe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tic Tac Toe/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Tic Tac Toe/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tic Tac Toe/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Tic Tac Toe/gesture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tic Tac Toe/gesture.py -------------------------------------------------------------------------------- /games/Archive 2022/Tic Tac Toe/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tic Tac Toe/logic.py -------------------------------------------------------------------------------- /games/Archive 2022/Tic Tac Toe/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tic Tac Toe/main.py -------------------------------------------------------------------------------- /games/Archive 2022/Tile Breaker Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tile Breaker Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Tile Breaker Game/snips/snip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tile Breaker Game/snips/snip1.png -------------------------------------------------------------------------------- /games/Archive 2022/Tile Breaker Game/tile-breaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tile Breaker Game/tile-breaker.py -------------------------------------------------------------------------------- /games/Archive 2022/Tile-O-Tiles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tile-O-Tiles/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Tile-O-Tiles/tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tile-O-Tiles/tile.py -------------------------------------------------------------------------------- /games/Archive 2022/Traffic running/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Traffic running/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Traffic running/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Traffic running/img/bg.jpg -------------------------------------------------------------------------------- /games/Archive 2022/Traffic running/img/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Traffic running/img/car.png -------------------------------------------------------------------------------- /games/Archive 2022/Traffic running/img/opponent car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Traffic running/img/opponent car.png -------------------------------------------------------------------------------- /games/Archive 2022/Traffic running/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Traffic running/index.html -------------------------------------------------------------------------------- /games/Archive 2022/Traffic running/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Traffic running/script.js -------------------------------------------------------------------------------- /games/Archive 2022/Traffic running/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Traffic running/style.css -------------------------------------------------------------------------------- /games/Archive 2022/Tron Game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tron Game/game.py -------------------------------------------------------------------------------- /games/Archive 2022/Tron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Tron/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Turtle Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Turtle Game/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Turtle Game/img/add-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Turtle Game/img/add-read.png -------------------------------------------------------------------------------- /games/Archive 2022/Turtle Game/img/ss1turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Turtle Game/img/ss1turtle.png -------------------------------------------------------------------------------- /games/Archive 2022/Turtle Game/turtle-game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Turtle Game/turtle-game.py -------------------------------------------------------------------------------- /games/Archive 2022/Typing Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Typing Game/Readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Typing Game/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Typing Game/logo.ico -------------------------------------------------------------------------------- /games/Archive 2022/Typing Game/snips/snip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Typing Game/snips/snip.png -------------------------------------------------------------------------------- /games/Archive 2022/Typing Game/typing-game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Typing Game/typing-game.py -------------------------------------------------------------------------------- /games/Archive 2022/Typing Game/words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Typing Game/words.py -------------------------------------------------------------------------------- /games/Archive 2022/Virtua Racing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Virtua Racing/README.md -------------------------------------------------------------------------------- /games/Archive 2022/Word Game/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Word Game/code.py -------------------------------------------------------------------------------- /games/Archive 2022/Word Guessing game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Word Guessing game/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Word Guessing game/wordGuess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Word Guessing game/wordGuess.py -------------------------------------------------------------------------------- /games/Archive 2022/Wordle Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Wordle Game/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/Wordle Game/wordle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Wordle Game/wordle.py -------------------------------------------------------------------------------- /games/Archive 2022/Xexex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/Xexex/README.md -------------------------------------------------------------------------------- /games/Archive 2022/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/delete.py -------------------------------------------------------------------------------- /games/Archive 2022/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/readme.md -------------------------------------------------------------------------------- /games/Archive 2022/sudoku.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/sudoku.css -------------------------------------------------------------------------------- /games/Archive 2022/sudoku.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/sudoku.html -------------------------------------------------------------------------------- /games/Archive 2022/sudoku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Archive 2022/sudoku.js -------------------------------------------------------------------------------- /games/Bagels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Bagels/README.md -------------------------------------------------------------------------------- /games/Bagels/bagels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Bagels/bagels.py -------------------------------------------------------------------------------- /games/Barca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Barca/README.md -------------------------------------------------------------------------------- /games/Barca/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Barca/main.py -------------------------------------------------------------------------------- /games/Basket_ball_game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Basket_ball_game/index.html -------------------------------------------------------------------------------- /games/Basket_ball_game/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Basket_ball_game/js/phaser.min.js -------------------------------------------------------------------------------- /games/Basket_ball_game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Basket_ball_game/readme.md -------------------------------------------------------------------------------- /games/Basket_ball_game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Basket_ball_game/style.css -------------------------------------------------------------------------------- /games/Black_zone_game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Black_zone_game/index.html -------------------------------------------------------------------------------- /games/Black_zone_game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Black_zone_game/readme.md -------------------------------------------------------------------------------- /games/Black_zone_game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Black_zone_game/script.js -------------------------------------------------------------------------------- /games/Black_zone_game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Black_zone_game/style.css -------------------------------------------------------------------------------- /games/Breakout_game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Breakout_game/index.html -------------------------------------------------------------------------------- /games/Breakout_game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Breakout_game/readme.md -------------------------------------------------------------------------------- /games/Breakout_game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Breakout_game/script.js -------------------------------------------------------------------------------- /games/Breakout_game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Breakout_game/style.css -------------------------------------------------------------------------------- /games/Brick_break_game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Brick_break_game/Readme.md -------------------------------------------------------------------------------- /games/Brick_break_game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Brick_break_game/index.html -------------------------------------------------------------------------------- /games/Brick_break_game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Brick_break_game/script.js -------------------------------------------------------------------------------- /games/Brick_break_game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Brick_break_game/style.css -------------------------------------------------------------------------------- /games/Cable_maze/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Cable_maze/index.html -------------------------------------------------------------------------------- /games/Cable_maze/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Cable_maze/main.js -------------------------------------------------------------------------------- /games/Cable_maze/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Cable_maze/readme.md -------------------------------------------------------------------------------- /games/Campfire/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Campfire/Readme.md -------------------------------------------------------------------------------- /games/Campfire/campfire_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Campfire/campfire_game.py -------------------------------------------------------------------------------- /games/Campfire_game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Campfire_game/index.html -------------------------------------------------------------------------------- /games/Campfire_game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Campfire_game/readme.md -------------------------------------------------------------------------------- /games/Campfire_game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Campfire_game/script.js -------------------------------------------------------------------------------- /games/Campfire_game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Campfire_game/style.css -------------------------------------------------------------------------------- /games/Car_Racing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Car_Racing/README.md -------------------------------------------------------------------------------- /games/Car_Racing/images/1icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Car_Racing/images/1icon.png -------------------------------------------------------------------------------- /games/Car_Racing/images/car04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Car_Racing/images/car04.png -------------------------------------------------------------------------------- /games/Car_Racing/images/cloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Car_Racing/images/cloud.jpg -------------------------------------------------------------------------------- /games/Car_Racing/images/finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Car_Racing/images/finish.png -------------------------------------------------------------------------------- /games/Car_Racing/images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Car_Racing/images/hero.png -------------------------------------------------------------------------------- /games/Car_Racing/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Car_Racing/images/icon.png -------------------------------------------------------------------------------- /games/Car_Racing/images/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Car_Racing/images/tree.png -------------------------------------------------------------------------------- /games/Car_Racing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Car_Racing/index.html -------------------------------------------------------------------------------- /games/Car_Racing/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Car_Racing/script.js -------------------------------------------------------------------------------- /games/Car_Racing/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Car_Racing/style.css -------------------------------------------------------------------------------- /games/Chance-Checkers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Chance-Checkers/README.md -------------------------------------------------------------------------------- /games/Chance-Checkers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Chance-Checkers/main.py -------------------------------------------------------------------------------- /games/Chess_game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Chess_game/index.html -------------------------------------------------------------------------------- /games/Chess_game/pieces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Chess_game/pieces.js -------------------------------------------------------------------------------- /games/Chess_game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Chess_game/readme.md -------------------------------------------------------------------------------- /games/Chess_game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Chess_game/script.js -------------------------------------------------------------------------------- /games/Chess_game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Chess_game/style.css -------------------------------------------------------------------------------- /games/Doodle_game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Doodle_game/Readme.md -------------------------------------------------------------------------------- /games/Doodle_game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Doodle_game/index.html -------------------------------------------------------------------------------- /games/Doodle_game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Doodle_game/script.js -------------------------------------------------------------------------------- /games/Doodle_game/stylr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Doodle_game/stylr.css -------------------------------------------------------------------------------- /games/Dragon-world-game/assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Dragon-world-game/assets/cover.png -------------------------------------------------------------------------------- /games/Dragon-world-game/assets/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Dragon-world-game/assets/dragon.png -------------------------------------------------------------------------------- /games/Dragon-world-game/assets/dragon_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Dragon-world-game/assets/dragon_world.png -------------------------------------------------------------------------------- /games/Dragon-world-game/assets/obstacle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Dragon-world-game/assets/obstacle.png -------------------------------------------------------------------------------- /games/Dragon-world-game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Dragon-world-game/index.html -------------------------------------------------------------------------------- /games/Dragon-world-game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Dragon-world-game/readme.md -------------------------------------------------------------------------------- /games/Dragon-world-game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Dragon-world-game/script.js -------------------------------------------------------------------------------- /games/Dragon-world-game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Dragon-world-game/style.css -------------------------------------------------------------------------------- /games/Ghost-Leg-Lottery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Ghost-Leg-Lottery/README.md -------------------------------------------------------------------------------- /games/Ghost-Leg-Lottery/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Ghost-Leg-Lottery/main.py -------------------------------------------------------------------------------- /games/Hit_me_toy/Hit-Me-Toy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Hit_me_toy/Hit-Me-Toy.py -------------------------------------------------------------------------------- /games/Hit_me_toy/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Hit_me_toy/Readme.md -------------------------------------------------------------------------------- /games/Ladoo_Catcher/CoreGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Ladoo_Catcher/CoreGame.py -------------------------------------------------------------------------------- /games/Ladoo_Catcher/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Ladoo_Catcher/Readme.md -------------------------------------------------------------------------------- /games/Ladoo_Catcher/asteroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Ladoo_Catcher/asteroid.png -------------------------------------------------------------------------------- /games/Ladoo_Catcher/ladoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Ladoo_Catcher/ladoo.png -------------------------------------------------------------------------------- /games/Ladoo_Catcher/ladoo_catcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Ladoo_Catcher/ladoo_catcher.py -------------------------------------------------------------------------------- /games/Ladoo_Catcher/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Ladoo_Catcher/net.png -------------------------------------------------------------------------------- /games/Maze-Runner-2d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Maze-Runner-2d/README.md -------------------------------------------------------------------------------- /games/Maze-Runner-2d/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Maze-Runner-2d/main.py -------------------------------------------------------------------------------- /games/Monalisa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Monalisa/README.md -------------------------------------------------------------------------------- /games/Monalisa/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Monalisa/main.py -------------------------------------------------------------------------------- /games/Non-uniform-Fractal-Tree-Drawer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Non-uniform-Fractal-Tree-Drawer/README.md -------------------------------------------------------------------------------- /games/Non-uniform-Fractal-Tree-Drawer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Non-uniform-Fractal-Tree-Drawer/main.py -------------------------------------------------------------------------------- /games/Paper_Plane/Paper_Plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Paper_Plane/Paper_Plane.py -------------------------------------------------------------------------------- /games/Paper_Plane/Paper_plane_gesture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Paper_Plane/Paper_plane_gesture.py -------------------------------------------------------------------------------- /games/Paper_Plane/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Paper_Plane/Readme.md -------------------------------------------------------------------------------- /games/Paper_Plane/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Paper_Plane/background.jpg -------------------------------------------------------------------------------- /games/Paper_Plane/planne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Paper_Plane/planne.png -------------------------------------------------------------------------------- /games/Random-Walk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Random-Walk/README.md -------------------------------------------------------------------------------- /games/Random-Walk/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Random-Walk/main.py -------------------------------------------------------------------------------- /games/Rotating-Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Rotating-Game/README.md -------------------------------------------------------------------------------- /games/Rotating-Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Rotating-Game/main.py -------------------------------------------------------------------------------- /games/Sand-Simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Sand-Simulator/README.md -------------------------------------------------------------------------------- /games/Sand-Simulator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Sand-Simulator/main.py -------------------------------------------------------------------------------- /games/Sliding-Tile-Puzzle-Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Sliding-Tile-Puzzle-Game/README.md -------------------------------------------------------------------------------- /games/Sliding-Tile-Puzzle-Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Sliding-Tile-Puzzle-Game/main.py -------------------------------------------------------------------------------- /games/Tic_Tac_Toe/hardcodedtic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Tic_Tac_Toe/hardcodedtic.py -------------------------------------------------------------------------------- /games/Tutorial-Guess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Tutorial-Guess/README.md -------------------------------------------------------------------------------- /games/Tutorial-Guess/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Tutorial-Guess/main.py -------------------------------------------------------------------------------- /games/Ulam-Spiral-Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Ulam-Spiral-Game/README.md -------------------------------------------------------------------------------- /games/Ulam-Spiral-Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Ulam-Spiral-Game/main.py -------------------------------------------------------------------------------- /games/Vaccum-Bot-Simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Vaccum-Bot-Simulator/README.md -------------------------------------------------------------------------------- /games/Vaccum-Bot-Simulator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Vaccum-Bot-Simulator/main.py -------------------------------------------------------------------------------- /games/Water-Bucket-Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Water-Bucket-Game/README.md -------------------------------------------------------------------------------- /games/Water-Bucket-Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Water-Bucket-Game/main.py -------------------------------------------------------------------------------- /games/Zig-Zag-Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Zig-Zag-Game/README.md -------------------------------------------------------------------------------- /games/Zig-Zag-Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Zig-Zag-Game/main.py -------------------------------------------------------------------------------- /games/Zombie-Bite-Fight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Zombie-Bite-Fight/README.md -------------------------------------------------------------------------------- /games/Zombie-Bite-Fight/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/games/Zombie-Bite-Fight/main.py -------------------------------------------------------------------------------- /handtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/handtrack.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharAMD/Runn/HEAD/screenshot/3.png --------------------------------------------------------------------------------