From 715632226a354ae84e55d0526436d51ab7c946b2 Mon Sep 17 00:00:00 2001 From: mukilan2815 Date: Sun, 14 Jul 2024 12:36:25 +0530 Subject: [PATCH 1/3] d --- Games/CowBull/README.md | 50 ++ Games/CowBull/css/game.css | 169 ++++++ Games/CowBull/css/index.css | 192 ++++++ Games/CowBull/game.html | 111 ++++ Games/CowBull/image.png | Bin 0 -> 49589 bytes Games/CowBull/index.html | 91 +++ Games/CowBull/js/app.js | 133 ++++ Games/CowBull/js/game.js | 188 ++++++ Games/CowBull/js/index.js | 31 + Games/CowBull/js/particles.min.js | 978 ++++++++++++++++++++++++++++++ assets/images/cowhome.png | Bin 0 -> 214417 bytes assets/images/cowlogo.png | Bin 0 -> 113995 bytes 12 files changed, 1943 insertions(+) create mode 100644 Games/CowBull/README.md create mode 100644 Games/CowBull/css/game.css create mode 100644 Games/CowBull/css/index.css create mode 100644 Games/CowBull/game.html create mode 100644 Games/CowBull/image.png create mode 100644 Games/CowBull/index.html create mode 100644 Games/CowBull/js/app.js create mode 100644 Games/CowBull/js/game.js create mode 100644 Games/CowBull/js/index.js create mode 100644 Games/CowBull/js/particles.min.js create mode 100644 assets/images/cowhome.png create mode 100644 assets/images/cowlogo.png diff --git a/Games/CowBull/README.md b/Games/CowBull/README.md new file mode 100644 index 0000000000..f77f485d85 --- /dev/null +++ b/Games/CowBull/README.md @@ -0,0 +1,50 @@ +# **Crack The Code** + +--- + +## **Description 📃** + + + +- The "Cows and Bulls" game is a classic code-breaking game where the player tries to guess a secret 3-digit number. The game provides feedback on each guess, indicating the number of "cows" and "bulls" in the guess. +- A "cow" represents a correct digit in the wrong position. +- A "bull" represents a correct digit in the correct position. +- The player has 10 attempts to guess the secret number correctly. After each guess, the game displays the number of cows and bulls, helping the player to refine their next guess. +- Have fun playing the "Cows and Bulls" game and see how quickly you can crack the code! + +## **Functionalities 🎮** + + + +- Generate 3 number code +- Provide hints in the form of "cows" and "bulls" +- Player's guess input +- Submit guess through a responsive web interface +- Check for correct submission +- If true, player wins; else, game restarts +- Loop continues until the player wins or exhausts their attempts + +
+ +## **How to Play? 🕹️** + + + +1. The game generates a secret 3-digit number. +2. Enter your guess in the provided input field. +3. Submit your guess. +4. Review the feedback of "cows" and "bulls" to adjust your next guess. +5. Repeat steps 2-4 until you guess the number correctly or run out of attempts. +6. If you guess correctly within 10 attempts, you win! Otherwise, the game restarts. + +
+ +## **Screenshots 📸** + +![image](image.png) + +
+ +## **Working video 📹** + + diff --git a/Games/CowBull/css/game.css b/Games/CowBull/css/game.css new file mode 100644 index 0000000000..2607175789 --- /dev/null +++ b/Games/CowBull/css/game.css @@ -0,0 +1,169 @@ +@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@500&display=swap'); + +* { + padding: 0; + margin: 0; + box-sizing: border-box; + font-family: "Baloo Bhai 2", cursive; +} + +a { + text-decoration: none; + color: inherit; +} + +h2 { + text-align: center; + color: #000; + margin: 20px; + font-size: 35px; + font-weight: 500; +} + +img.logo { + height: 100px; +} + +nav.main-navigation { + display: flex; + justify-content: space-between; + align-items: center; + margin: 0 20px; +} + +nav.main-navigation ul li { + display: inline-block; + padding: 5px; + border-radius: 13px; + margin: 10px 12px; + cursor: pointer; + font-size: 1.5rem; + color: #000; + font-weight: 500; +} + +nav.main-navigation ul li:hover { + background-color: #36454F; + color: white; +} + +h1 { + text-align: center; + font-size: 45px; +} + +.cnb { + margin: 0; + padding: 20px; + display: grid; + grid-template-columns: 1fr 1fr; + grid-gap: 20px; +} + +.container { + flex: 1; + text-align: center; +} + +h1 { + margin-top: 0; +} + +#guessInput { + padding: 10px; + font-size: 16px; +} + +#submitBtn, +#newGameBtn { + padding: 10px 20px; + font-size: 16px; + background-color: #4CAF50; + color: white; + border: none; + cursor: pointer; + margin-top: 10px; +} + +#submitBtn:hover, +#newGameBtn:hover { + background-color: #45a049; +} + +#resultsContainer { + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; +} + +#resultsTable { + border-collapse: collapse; + width: 100%; + max-width: 600px; +} + +#resultsTable th, +#resultsTable td { + padding: 8px; + text-align: center; + border: 1px solid #ddd; +} + +#resultsTable th { + background-color: #f2f2f2; +} + +#resultsTable tr:nth-child(even) { + background-color: #f9f9f9; +} + +.left { + padding-top: 25px; + font-size: 30px; +} + +.overlay { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.5); + display: none; + justify-content: center; + align-items: center; + z-index: 9999; +} + +.instructions-box { + background-color: #fff; + padding: 20px; + border-radius: 5px; + max-width: 500px; + text-align: center; + position: relative; +} + +.close-btn { + position: absolute; + top: 10px; + right: 10px; + cursor: pointer; + font-size: 30px; + line-height: 1; + color: #c92323; +} + +.instructions-box ul { + text-align: justify; +} + +.instructions-box p { + font-size: 18px; +} + +.obj { + padding-top: 5px; + text-align: justify; +} \ No newline at end of file diff --git a/Games/CowBull/css/index.css b/Games/CowBull/css/index.css new file mode 100644 index 0000000000..b9e9d82c91 --- /dev/null +++ b/Games/CowBull/css/index.css @@ -0,0 +1,192 @@ +@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@500&display=swap'); + +* { + padding: 0; + margin: 0; + box-sizing: border-box; + font-family: "Baloo Bhai 2", cursive; +} + +a { + text-decoration: none; + color: inherit; +} + +h2 { + text-align: center; + color: #000; + margin: 50px; + font-size: 50px; + font-weight: 500; +} + +img.logo { + height: 100px; +} + +nav.main-navigation { + z-index: 1; + display: flex; + justify-content: space-between; + align-items: center; + margin: 0 20px; +} + +nav.main-navigation ul li { + display: inline-block; + padding: 5px; + border-radius: 13px; + margin: 10px 12px; + cursor: pointer; + font-size: 1.5rem; + color: #000; + font-weight: 500; +} + +nav.main-navigation ul li:hover { + background-color: #36454F; + color: white; +} + +.intro { + display: flex; + flex-direction: column; + align-items: center; + text-align: center; +} + +img.image { + margin: 30px; + max-width: 100%; + height: auto; + animation: zoom-in 4s linear infinite; +} + +h1 { + text-align: center; + font-size: 55px; +} + +@keyframes zoom-in { + 0% { + transform: scale3d(1, 1, 1); + } + + 50% { + transform: scale3d(1.2, 1.2, 1.2); + } + + 100% { + transform: scale3d(1, 1, 1); + } +} + +.button { + position: relative; + display: inline-block; + margin: 20px; +} + +.button a { + color: white; + font-weight: bold; + font-size: 36px; + text-align: center; + text-decoration: none; + background-color: #FFA12B; + display: block; + position: relative; + padding: 10px 30px; + + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + text-shadow: 0px 1px 0px #000; + filter: dropshadow(color=#000, offx=0px, offy=1px); + + -webkit-box-shadow: inset 0 1px 0 #FFE5C4, 0 10px 0 #915100; + -moz-box-shadow: inset 0 1px 0 #FFE5C4, 0 10px 0 #915100; + box-shadow: inset 0 1px 0 #FFE5C4, 0 10px 0 #915100; + + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} + +.button a:active { + top: 10px; + background-color: #F78900; + + -webkit-box-shadow: inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100; + -moz-box-shadow: inset 0 1px 0 #FFE5C4, inset 0 -3pxpx 0 #915100; + box-shadow: inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100; +} + +.button:after { + content: ""; + height: 100%; + width: 100%; + padding: 4px; + position: absolute; + bottom: -15px; + left: -4px; + z-index: -1; + background-color: #2B1800; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} + +#particles-js { + position: absolute; + height: 100%; + width: 100%; + z-index: -1; +} + +.out { + position: relative; +} + +.overlay { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.5); + display: none; + justify-content: center; + align-items: center; + z-index: 9999; +} + +.instructions-box { + background-color: #fff; + padding: 20px; + border-radius: 5px; + max-width: 500px; + text-align: center; + position: relative; +} + +.close-btn { + position: absolute; + top: 10px; + right: 10px; + cursor: pointer; + font-size: 30px; + line-height: 1; + color: #c92323; +} + +.instructions-box ul { + text-align: justify; +} + +.instructions-box p { + font-size: 18px; +} + +.obj { + padding-top: 5px; + text-align: justify; +} \ No newline at end of file diff --git a/Games/CowBull/game.html b/Games/CowBull/game.html new file mode 100644 index 0000000000..aea88cf5a1 --- /dev/null +++ b/Games/CowBull/game.html @@ -0,0 +1,111 @@ + + + + + + + Cows and Bulls + + + + + + + + +
+ +
+
+
+

Instructions

+

Welcome to Cows and Bulls!

+

+ Objective: Guess the secret number within 10 + attempts. +

+

Rules

+
    +
  • + A secret number will be generated, consisting of non-repeating 3 + digits (each digit between 1 and 9). +
  • +
  • + You need to guess the secret number by entering a 3-digit number. +
  • +
  • + If a guessed digit matches the corresponding digit in the secret + number and is in the correct position, it's a "Bull." +
  • +
  • + If a guessed digit matches a digit in the secret number but is in + the wrong position, it's a "Cow." +
  • +
  • + Based on the number of Bulls and Cows, you can refine your guesses + until you find the secret number. +
  • +
  • + You have a total of 10 attempts to guess the number. Use them + wisely! +
  • +
+

Have fun playing Cows and Bulls!

+
×
+
+
+

Game Board

+
+
+

Computer has guessed a 3-digit number

+

It's your turn to guess!

+ +
+ + + +
+
+ +
+

Results

+
+ + + + + + + + + + +
AttemptGuessCowsBulls
+
+
+
+ + + diff --git a/Games/CowBull/image.png b/Games/CowBull/image.png new file mode 100644 index 0000000000000000000000000000000000000000..56fd8be0d1f8a2a58da4df0c3d4b6257e07eb95a GIT binary patch literal 49589 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

>dee(qh&ma2gLS^$lWz5y5e}% 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 aP~zt5a4v@t_Xb^&1mS??Pvu6(&ixB_Zq$MR literal 0 HcmV?d00001 diff --git a/Games/CowBull/index.html b/Games/CowBull/index.html new file mode 100644 index 0000000000..ba2d136560 --- /dev/null +++ b/Games/CowBull/index.html @@ -0,0 +1,91 @@ + + + + + + + Cows and Bulls + + + + + + + + +

+
+
+ +
+ +
+

Cows and Bulls

+ +
+
+ Play +
+
+
+ +
+
+

Instructions

+

Welcome to Cows and Bulls!

+

+ Objective: Guess the secret number within 10 + attempts. +

+

Rules

+
    +
  • + A secret number will be generated, consisting of non-repeating 3 + digits (each digit between 1 and 9). +
  • +
  • + You need to guess the secret number by entering a 3-digit number. +
  • +
  • + If a guessed digit matches the corresponding digit in the secret + number and is in the correct position, it's a "Bull." +
  • +
  • + If a guessed digit matches a digit in the secret number but is in + the wrong position, it's a "Cow." +
  • +
  • + Based on the number of Bulls and Cows, you can refine your guesses + until you find the secret number. +
  • +
  • + You have a total of 10 attempts to guess the number. Use them + wisely! +
  • +
+

Have fun playing Cows and Bulls!

+
×
+
+
+ + + + + diff --git a/Games/CowBull/js/app.js b/Games/CowBull/js/app.js new file mode 100644 index 0000000000..d5f54bc9df --- /dev/null +++ b/Games/CowBull/js/app.js @@ -0,0 +1,133 @@ +/* ----------------------------------------------- +/* How to use? : Check the GitHub README +/* ----------------------------------------------- */ + +/* To load a config file (particles.json) you need to host this demo (MAMP/WAMP/local)... */ +/* +particlesJS.load('particles-js', 'particles.json', function() { + console.log('particles.js loaded - callback'); +}); +*/ + +/* Otherwise just put the config content (json): */ + +particlesJS('particles-js', + + { + "particles": { + "number": { + "value": 80, + "density": { + "enable": true, + "value_area": 800 + } + }, + "color": { + "value": "#000000" + }, + "shape": { + "type": "circle", + "stroke": { + "width": 0, + "color": "#000000" + }, + "polygon": { + "nb_sides": 5 + }, + "image": { + "src": "img/github.svg", + "width": 100, + "height": 100 + } + }, + "opacity": { + "value": 0.5, + "random": false, + "anim": { + "enable": false, + "speed": 1, + "opacity_min": 0.1, + "sync": false + } + }, + "size": { + "value": 5, + "random": true, + "anim": { + "enable": false, + "speed": 40, + "size_min": 0.1, + "sync": false + } + }, + "line_linked": { + "enable": true, + "distance": 150, + "color": "#000000", + "opacity": 0.4, + "width": 1 + }, + "move": { + "enable": true, + "speed": 6, + "direction": "none", + "random": false, + "straight": false, + "out_mode": "out", + "attract": { + "enable": false, + "rotateX": 600, + "rotateY": 1200 + } + } + }, + "interactivity": { + "detect_on": "canvas", + "events": { + "onhover": { + "enable": true, + "mode": "repulse" + }, + "onclick": { + "enable": true, + "mode": "push" + }, + "resize": true + }, + "modes": { + "grab": { + "distance": 400, + "line_linked": { + "opacity": 1 + } + }, + "bubble": { + "distance": 400, + "size": 40, + "duration": 2, + "opacity": 8, + "speed": 3 + }, + "repulse": { + "distance": 200 + }, + "push": { + "particles_nb": 4 + }, + "remove": { + "particles_nb": 2 + } + } + }, + "retina_detect": true, + "config_demo": { + "hide_card": false, + "background_color": "#000000", + "background_image": "", + "background_position": "50% 50%", + "background_repeat": "no-repeat", + "background_size": "cover" + } + } + +); \ No newline at end of file diff --git a/Games/CowBull/js/game.js b/Games/CowBull/js/game.js new file mode 100644 index 0000000000..0a57da440c --- /dev/null +++ b/Games/CowBull/js/game.js @@ -0,0 +1,188 @@ +// Generate random 3-digit number for the computer's guess +let computerNumber = generateRandomNumber(); + +// Store game data +let attempts = 0; +const gameData = []; + +// Get HTML elements +const guessInput = document.getElementById('guessInput'); +const submitBtn = document.getElementById('submitBtn'); +const newGameBtn = document.getElementById('newGameBtn'); +const resultsBody = document.getElementById('resultsBody'); + +guessInput.addEventListener('keydown', handleKeyDown); + + +// Function to generate a random 3-digit number +function generateRandomNumber() { + const digits = ['1', '2', '3', '4', '5', '6', '7', '8', '9']; + let number = ''; + + for (let i = 0; i < 3; i++) { + const randomIndex = Math.floor(Math.random() * digits.length); + const digit = digits.splice(randomIndex, 1)[0]; + number += digit; + } + + return parseInt(number); + } +// Function to check the user's guess +function checkGuess(guess) { + const guessString = guess.toString(); + const computerString = computerNumber.toString(); + let cows = 0; + let bulls = 0; + + for (let i = 0; i < guessString.length; i++) { + if (guessString[i] === computerString[i]) { + bulls++; + } else if (computerString.includes(guessString[i])) { + cows++; + } + } + + return [cows, bulls]; +} + +// Function to update the game status and results table +function updateGameStatus(cows, bulls) { + attempts++; + + const guess = guessInput.value; + gameData.push([attempts, guess, cows, bulls]); + + // Create a new row for the results table + const newRow = document.createElement('tr'); + const cell1 = document.createElement('td'); + const cell2 = document.createElement('td'); + const cell3 = document.createElement('td'); + const cell4 = document.createElement('td'); + + cell1.textContent = attempts; + cell2.textContent = guess; + cell3.textContent = cows; + cell4.textContent = bulls; + + newRow.appendChild(cell1); + newRow.appendChild(cell2); + newRow.appendChild(cell3); + newRow.appendChild(cell4); + resultsBody.appendChild(newRow); + + // Clear the input field and focus on it + guessInput.value = ''; + guessInput.focus(); +} + +// Function to handle guess submission +function submitGuess() { + const guess = parseInt(guessInput.value); + + if (isNaN(guess) || guess < 100 || guess > 999) { + alert('Please enter a valid 3-digit number.'); + return; + } + + const guessString = guess.toString(); + + if (hasRepeatingDigits(guessString)) { + alert('Digits in the guess should not repeat. Please enter a valid 3-digit number.'); + return; + } + + if (!isValidInput(guessString)) { + alert('Digits in the guess should not countain 0. Please enter a valid 3-digit number.'); + return; + } + + const [cows, bulls] = checkGuess(guess); + + if (bulls === 3) { + updateGameStatus(cows, bulls); + // User guessed the correct number + alert(`Congratulations! You guessed the correct number in ${attempts} attempts.`); + submitBtn.disabled = true; + + // Start a new game and clear the input field + setTimeout(() => { + guessInput.value = ''; + newGame(); + }, 2000); // Delay for 2 seconds before starting a new game + } else { + // Update game status + updateGameStatus(cows, bulls); + + if (attempts >= 10) { + // User exceeded the maximum number of attempts + alert(`Game over! The correct number was ${computerNumber}.`); + submitBtn.disabled = true; + + // Start a new game and clear the input field + setTimeout(() => { + guessInput.value = ''; + newGame(); + }, 1000); // Delay for 2 seconds before starting a new game + } + } +} + +// Function to start a new game +function newGame() { + attempts = 0; + gameData.length = 0; + resultsBody.innerHTML = ''; + computerNumber = generateRandomNumber(); + submitBtn.disabled = false; + guessInput.value = ''; + guessInput.focus(); +} + + +function handleKeyDown(event) { + if (event.key === 'Enter') { + event.preventDefault(); + submitBtn.click(); + } +} + +function hasRepeatingDigits(str) { + return (/([0-9]).*?\1/).test(str); +} + +// Validate the input guess +function isValidInput(guess) { + return (/^[^0]{3}$/).test(guess); +} + +document.addEventListener('DOMContentLoaded', function() { + // Function to show instructions box + function showInstructions() { + const overlay = document.querySelector('.overlay'); + overlay.style.display = 'flex'; + } + + // Function to close instructions box + function closeInstructions() { + const overlay = document.querySelector('.overlay'); + overlay.style.display = 'none'; + } + + // Event listener for "How to play?" link + const howToPlayLink = document.querySelector('.how-to-play'); + howToPlayLink.addEventListener('click', function(event) { + event.preventDefault(); + showInstructions(); + }); + + // Event listener for close button + const closeBtn = document.querySelector('.close-btn'); + closeBtn.addEventListener('click', closeInstructions); + + // Event listener for pressing the "Esc" key + document.addEventListener('keydown', function(event) { + if (event.key === 'Escape') { + closeInstructions(); + } + }); +}); diff --git a/Games/CowBull/js/index.js b/Games/CowBull/js/index.js new file mode 100644 index 0000000000..3e14254b7f --- /dev/null +++ b/Games/CowBull/js/index.js @@ -0,0 +1,31 @@ +document.addEventListener('DOMContentLoaded', function() { + // Function to show instructions box + function showInstructions() { + const overlay = document.querySelector('.overlay'); + overlay.style.display = 'flex'; + } + + // Function to close instructions box + function closeInstructions() { + const overlay = document.querySelector('.overlay'); + overlay.style.display = 'none'; + } + + // Event listener for "How to play?" link + const howToPlayLink = document.querySelector('.how-to-play'); + howToPlayLink.addEventListener('click', function(event) { + event.preventDefault(); + showInstructions(); + }); + + // Event listener for close button + const closeBtn = document.querySelector('.close-btn'); + closeBtn.addEventListener('click', closeInstructions); + + // Event listener for pressing the "Esc" key + document.addEventListener('keydown', function(event) { + if (event.key === 'Escape') { + closeInstructions(); + } + }); +}); \ No newline at end of file diff --git a/Games/CowBull/js/particles.min.js b/Games/CowBull/js/particles.min.js new file mode 100644 index 0000000000..eec579889b --- /dev/null +++ b/Games/CowBull/js/particles.min.js @@ -0,0 +1,978 @@ +/* ----------------------------------------------- +/* Author : Vincent Garreau - vincentgarreau.com +/* MIT license: http://opensource.org/licenses/MIT +/* Demo / Generator : vincentgarreau.com/particles.js +/* GitHub : github.com/VincentGarreau/particles.js +/* How to use? : Check the GitHub README +/* v2.0.0 +/* ----------------------------------------------- */ +function hexToRgb(e) { + var a = /^#?([a-f\d])([a-f\d])([a-f\d])$/i; + e = e.replace(a, function (e, a, t, i) { + return a + a + t + t + i + i; + }); + var t = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e); + return t + ? { r: parseInt(t[1], 16), g: parseInt(t[2], 16), b: parseInt(t[3], 16) } + : null; +} +function clamp(e, a, t) { + return Math.min(Math.max(e, a), t); +} +function isInArray(e, a) { + return a.indexOf(e) > -1; +} +var pJS = function (e, a) { + var t = document.querySelector("#" + e + " > .particles-js-canvas-el"); + this.pJS = { + canvas: { el: t, w: t.offsetWidth, h: t.offsetHeight }, + particles: { + number: { value: 400, density: { enable: !0, value_area: 800 } }, + color: { value: "#fff" }, + shape: { + type: "circle", + stroke: { width: 0, color: "#ff0000" }, + polygon: { nb_sides: 5 }, + image: { src: "", width: 100, height: 100 }, + }, + opacity: { + value: 1, + random: !1, + anim: { enable: !1, speed: 2, opacity_min: 0, sync: !1 }, + }, + size: { + value: 20, + random: !1, + anim: { enable: !1, speed: 20, size_min: 0, sync: !1 }, + }, + line_linked: { + enable: !0, + distance: 100, + color: "#fff", + opacity: 1, + width: 1, + }, + move: { + enable: !0, + speed: 2, + direction: "none", + random: !1, + straight: !1, + out_mode: "out", + bounce: !1, + attract: { enable: !1, rotateX: 3e3, rotateY: 3e3 }, + }, + array: [], + }, + interactivity: { + detect_on: "canvas", + events: { + onhover: { enable: !0, mode: "grab" }, + onclick: { enable: !0, mode: "push" }, + resize: !0, + }, + modes: { + grab: { distance: 100, line_linked: { opacity: 1 } }, + bubble: { distance: 200, size: 80, duration: 0.4 }, + repulse: { distance: 200, duration: 0.4 }, + push: { particles_nb: 4 }, + remove: { particles_nb: 2 }, + }, + mouse: {}, + }, + retina_detect: !1, + fn: { interact: {}, modes: {}, vendors: {} }, + tmp: {}, + }; + var i = this.pJS; + a && Object.deepExtend(i, a), + (i.tmp.obj = { + size_value: i.particles.size.value, + size_anim_speed: i.particles.size.anim.speed, + move_speed: i.particles.move.speed, + line_linked_distance: i.particles.line_linked.distance, + line_linked_width: i.particles.line_linked.width, + mode_grab_distance: i.interactivity.modes.grab.distance, + mode_bubble_distance: i.interactivity.modes.bubble.distance, + mode_bubble_size: i.interactivity.modes.bubble.size, + mode_repulse_distance: i.interactivity.modes.repulse.distance, + }), + (i.fn.retinaInit = function () { + i.retina_detect && window.devicePixelRatio > 1 + ? ((i.canvas.pxratio = window.devicePixelRatio), (i.tmp.retina = !0)) + : ((i.canvas.pxratio = 1), (i.tmp.retina = !1)), + (i.canvas.w = i.canvas.el.offsetWidth * i.canvas.pxratio), + (i.canvas.h = i.canvas.el.offsetHeight * i.canvas.pxratio), + (i.particles.size.value = i.tmp.obj.size_value * i.canvas.pxratio), + (i.particles.size.anim.speed = + i.tmp.obj.size_anim_speed * i.canvas.pxratio), + (i.particles.move.speed = i.tmp.obj.move_speed * i.canvas.pxratio), + (i.particles.line_linked.distance = + i.tmp.obj.line_linked_distance * i.canvas.pxratio), + (i.interactivity.modes.grab.distance = + i.tmp.obj.mode_grab_distance * i.canvas.pxratio), + (i.interactivity.modes.bubble.distance = + i.tmp.obj.mode_bubble_distance * i.canvas.pxratio), + (i.particles.line_linked.width = + i.tmp.obj.line_linked_width * i.canvas.pxratio), + (i.interactivity.modes.bubble.size = + i.tmp.obj.mode_bubble_size * i.canvas.pxratio), + (i.interactivity.modes.repulse.distance = + i.tmp.obj.mode_repulse_distance * i.canvas.pxratio); + }), + (i.fn.canvasInit = function () { + i.canvas.ctx = i.canvas.el.getContext("2d"); + }), + (i.fn.canvasSize = function () { + (i.canvas.el.width = i.canvas.w), + (i.canvas.el.height = i.canvas.h), + i && + i.interactivity.events.resize && + window.addEventListener("resize", function () { + (i.canvas.w = i.canvas.el.offsetWidth), + (i.canvas.h = i.canvas.el.offsetHeight), + i.tmp.retina && + ((i.canvas.w *= i.canvas.pxratio), + (i.canvas.h *= i.canvas.pxratio)), + (i.canvas.el.width = i.canvas.w), + (i.canvas.el.height = i.canvas.h), + i.particles.move.enable || + (i.fn.particlesEmpty(), + i.fn.particlesCreate(), + i.fn.particlesDraw(), + i.fn.vendors.densityAutoParticles()), + i.fn.vendors.densityAutoParticles(); + }); + }), + (i.fn.canvasPaint = function () { + i.canvas.ctx.fillRect(0, 0, i.canvas.w, i.canvas.h); + }), + (i.fn.canvasClear = function () { + i.canvas.ctx.clearRect(0, 0, i.canvas.w, i.canvas.h); + }), + (i.fn.particle = function (e, a, t) { + if ( + ((this.radius = + (i.particles.size.random ? Math.random() : 1) * + i.particles.size.value), + i.particles.size.anim.enable && + ((this.size_status = !1), + (this.vs = i.particles.size.anim.speed / 100), + i.particles.size.anim.sync || (this.vs = this.vs * Math.random())), + (this.x = t ? t.x : Math.random() * i.canvas.w), + (this.y = t ? t.y : Math.random() * i.canvas.h), + this.x > i.canvas.w - 2 * this.radius + ? (this.x = this.x - this.radius) + : this.x < 2 * this.radius && (this.x = this.x + this.radius), + this.y > i.canvas.h - 2 * this.radius + ? (this.y = this.y - this.radius) + : this.y < 2 * this.radius && (this.y = this.y + this.radius), + i.particles.move.bounce && i.fn.vendors.checkOverlap(this, t), + (this.color = {}), + "object" == typeof e.value) + ) + if (e.value instanceof Array) { + var s = + e.value[Math.floor(Math.random() * i.particles.color.value.length)]; + this.color.rgb = hexToRgb(s); + } else + void 0 != e.value.r && + void 0 != e.value.g && + void 0 != e.value.b && + (this.color.rgb = { r: e.value.r, g: e.value.g, b: e.value.b }), + void 0 != e.value.h && + void 0 != e.value.s && + void 0 != e.value.l && + (this.color.hsl = { h: e.value.h, s: e.value.s, l: e.value.l }); + else + "random" == e.value + ? (this.color.rgb = { + r: Math.floor(256 * Math.random()) + 0, + g: Math.floor(256 * Math.random()) + 0, + b: Math.floor(256 * Math.random()) + 0, + }) + : "string" == typeof e.value && + ((this.color = e), (this.color.rgb = hexToRgb(this.color.value))); + (this.opacity = + (i.particles.opacity.random ? Math.random() : 1) * + i.particles.opacity.value), + i.particles.opacity.anim.enable && + ((this.opacity_status = !1), + (this.vo = i.particles.opacity.anim.speed / 100), + i.particles.opacity.anim.sync || (this.vo = this.vo * Math.random())); + var n = {}; + switch (i.particles.move.direction) { + case "top": + n = { x: 0, y: -1 }; + break; + case "top-right": + n = { x: 0.5, y: -0.5 }; + break; + case "right": + n = { x: 1, y: -0 }; + break; + case "bottom-right": + n = { x: 0.5, y: 0.5 }; + break; + case "bottom": + n = { x: 0, y: 1 }; + break; + case "bottom-left": + n = { x: -0.5, y: 1 }; + break; + case "left": + n = { x: -1, y: 0 }; + break; + case "top-left": + n = { x: -0.5, y: -0.5 }; + break; + default: + n = { x: 0, y: 0 }; + } + i.particles.move.straight + ? ((this.vx = n.x), + (this.vy = n.y), + i.particles.move.random && + ((this.vx = this.vx * Math.random()), + (this.vy = this.vy * Math.random()))) + : ((this.vx = n.x + Math.random() - 0.5), + (this.vy = n.y + Math.random() - 0.5)), + (this.vx_i = this.vx), + (this.vy_i = this.vy); + var r = i.particles.shape.type; + if ("object" == typeof r) { + if (r instanceof Array) { + var c = r[Math.floor(Math.random() * r.length)]; + this.shape = c; + } + } else this.shape = r; + if ("image" == this.shape) { + var o = i.particles.shape; + (this.img = { + src: o.image.src, + ratio: o.image.width / o.image.height, + }), + this.img.ratio || (this.img.ratio = 1), + "svg" == i.tmp.img_type && + void 0 != i.tmp.source_svg && + (i.fn.vendors.createSvgImg(this), + i.tmp.pushing && (this.img.loaded = !1)); + } + }), + (i.fn.particle.prototype.draw = function () { + function e() { + i.canvas.ctx.drawImage( + r, + a.x - t, + a.y - t, + 2 * t, + (2 * t) / a.img.ratio + ); + } + var a = this; + if (void 0 != a.radius_bubble) var t = a.radius_bubble; + else var t = a.radius; + if (void 0 != a.opacity_bubble) var s = a.opacity_bubble; + else var s = a.opacity; + if (a.color.rgb) + var n = + "rgba(" + + a.color.rgb.r + + "," + + a.color.rgb.g + + "," + + a.color.rgb.b + + "," + + s + + ")"; + else + var n = + "hsla(" + + a.color.hsl.h + + "," + + a.color.hsl.s + + "%," + + a.color.hsl.l + + "%," + + s + + ")"; + switch ( + ((i.canvas.ctx.fillStyle = n), i.canvas.ctx.beginPath(), a.shape) + ) { + case "circle": + i.canvas.ctx.arc(a.x, a.y, t, 0, 2 * Math.PI, !1); + break; + case "edge": + i.canvas.ctx.rect(a.x - t, a.y - t, 2 * t, 2 * t); + break; + case "triangle": + i.fn.vendors.drawShape( + i.canvas.ctx, + a.x - t, + a.y + t / 1.66, + 2 * t, + 3, + 2 + ); + break; + case "polygon": + i.fn.vendors.drawShape( + i.canvas.ctx, + a.x - t / (i.particles.shape.polygon.nb_sides / 3.5), + a.y - t / 0.76, + (2.66 * t) / (i.particles.shape.polygon.nb_sides / 3), + i.particles.shape.polygon.nb_sides, + 1 + ); + break; + case "star": + i.fn.vendors.drawShape( + i.canvas.ctx, + a.x - (2 * t) / (i.particles.shape.polygon.nb_sides / 4), + a.y - t / 1.52, + (2 * t * 2.66) / (i.particles.shape.polygon.nb_sides / 3), + i.particles.shape.polygon.nb_sides, + 2 + ); + break; + case "image": + if ("svg" == i.tmp.img_type) var r = a.img.obj; + else var r = i.tmp.img_obj; + r && e(); + } + i.canvas.ctx.closePath(), + i.particles.shape.stroke.width > 0 && + ((i.canvas.ctx.strokeStyle = i.particles.shape.stroke.color), + (i.canvas.ctx.lineWidth = i.particles.shape.stroke.width), + i.canvas.ctx.stroke()), + i.canvas.ctx.fill(); + }), + (i.fn.particlesCreate = function () { + for (var e = 0; e < i.particles.number.value; e++) + i.particles.array.push( + new i.fn.particle(i.particles.color, i.particles.opacity.value) + ); + }), + (i.fn.particlesUpdate = function () { + for (var e = 0; e < i.particles.array.length; e++) { + var a = i.particles.array[e]; + if (i.particles.move.enable) { + var t = i.particles.move.speed / 2; + (a.x += a.vx * t), (a.y += a.vy * t); + } + if ( + (i.particles.opacity.anim.enable && + (1 == a.opacity_status + ? (a.opacity >= i.particles.opacity.value && + (a.opacity_status = !1), + (a.opacity += a.vo)) + : (a.opacity <= i.particles.opacity.anim.opacity_min && + (a.opacity_status = !0), + (a.opacity -= a.vo)), + a.opacity < 0 && (a.opacity = 0)), + i.particles.size.anim.enable && + (1 == a.size_status + ? (a.radius >= i.particles.size.value && (a.size_status = !1), + (a.radius += a.vs)) + : (a.radius <= i.particles.size.anim.size_min && + (a.size_status = !0), + (a.radius -= a.vs)), + a.radius < 0 && (a.radius = 0)), + "bounce" == i.particles.move.out_mode) + ) + var s = { + x_left: a.radius, + x_right: i.canvas.w, + y_top: a.radius, + y_bottom: i.canvas.h, + }; + else + var s = { + x_left: -a.radius, + x_right: i.canvas.w + a.radius, + y_top: -a.radius, + y_bottom: i.canvas.h + a.radius, + }; + switch ( + (a.x - a.radius > i.canvas.w + ? ((a.x = s.x_left), (a.y = Math.random() * i.canvas.h)) + : a.x + a.radius < 0 && + ((a.x = s.x_right), (a.y = Math.random() * i.canvas.h)), + a.y - a.radius > i.canvas.h + ? ((a.y = s.y_top), (a.x = Math.random() * i.canvas.w)) + : a.y + a.radius < 0 && + ((a.y = s.y_bottom), (a.x = Math.random() * i.canvas.w)), + i.particles.move.out_mode) + ) { + case "bounce": + a.x + a.radius > i.canvas.w + ? (a.vx = -a.vx) + : a.x - a.radius < 0 && (a.vx = -a.vx), + a.y + a.radius > i.canvas.h + ? (a.vy = -a.vy) + : a.y - a.radius < 0 && (a.vy = -a.vy); + } + if ( + (isInArray("grab", i.interactivity.events.onhover.mode) && + i.fn.modes.grabParticle(a), + (isInArray("bubble", i.interactivity.events.onhover.mode) || + isInArray("bubble", i.interactivity.events.onclick.mode)) && + i.fn.modes.bubbleParticle(a), + (isInArray("repulse", i.interactivity.events.onhover.mode) || + isInArray("repulse", i.interactivity.events.onclick.mode)) && + i.fn.modes.repulseParticle(a), + i.particles.line_linked.enable || i.particles.move.attract.enable) + ) + for (var n = e + 1; n < i.particles.array.length; n++) { + var r = i.particles.array[n]; + i.particles.line_linked.enable && i.fn.interact.linkParticles(a, r), + i.particles.move.attract.enable && + i.fn.interact.attractParticles(a, r), + i.particles.move.bounce && i.fn.interact.bounceParticles(a, r); + } + } + }), + (i.fn.particlesDraw = function () { + i.canvas.ctx.clearRect(0, 0, i.canvas.w, i.canvas.h), + i.fn.particlesUpdate(); + for (var e = 0; e < i.particles.array.length; e++) { + var a = i.particles.array[e]; + a.draw(); + } + }), + (i.fn.particlesEmpty = function () { + i.particles.array = []; + }), + (i.fn.particlesRefresh = function () { + cancelRequestAnimFrame(i.fn.checkAnimFrame), + cancelRequestAnimFrame(i.fn.drawAnimFrame), + (i.tmp.source_svg = void 0), + (i.tmp.img_obj = void 0), + (i.tmp.count_svg = 0), + i.fn.particlesEmpty(), + i.fn.canvasClear(), + i.fn.vendors.start(); + }), + (i.fn.interact.linkParticles = function (e, a) { + var t = e.x - a.x, + s = e.y - a.y, + n = Math.sqrt(t * t + s * s); + if (n <= i.particles.line_linked.distance) { + var r = + i.particles.line_linked.opacity - + n / + (1 / i.particles.line_linked.opacity) / + i.particles.line_linked.distance; + if (r > 0) { + var c = i.particles.line_linked.color_rgb_line; + (i.canvas.ctx.strokeStyle = + "rgba(" + c.r + "," + c.g + "," + c.b + "," + r + ")"), + (i.canvas.ctx.lineWidth = i.particles.line_linked.width), + i.canvas.ctx.beginPath(), + i.canvas.ctx.moveTo(e.x, e.y), + i.canvas.ctx.lineTo(a.x, a.y), + i.canvas.ctx.stroke(), + i.canvas.ctx.closePath(); + } + } + }), + (i.fn.interact.attractParticles = function (e, a) { + var t = e.x - a.x, + s = e.y - a.y, + n = Math.sqrt(t * t + s * s); + if (n <= i.particles.line_linked.distance) { + var r = t / (1e3 * i.particles.move.attract.rotateX), + c = s / (1e3 * i.particles.move.attract.rotateY); + (e.vx -= r), (e.vy -= c), (a.vx += r), (a.vy += c); + } + }), + (i.fn.interact.bounceParticles = function (e, a) { + var t = e.x - a.x, + i = e.y - a.y, + s = Math.sqrt(t * t + i * i), + n = e.radius + a.radius; + n >= s && + ((e.vx = -e.vx), (e.vy = -e.vy), (a.vx = -a.vx), (a.vy = -a.vy)); + }), + (i.fn.modes.pushParticles = function (e, a) { + i.tmp.pushing = !0; + for (var t = 0; e > t; t++) + i.particles.array.push( + new i.fn.particle(i.particles.color, i.particles.opacity.value, { + x: a ? a.pos_x : Math.random() * i.canvas.w, + y: a ? a.pos_y : Math.random() * i.canvas.h, + }) + ), + t == e - 1 && + (i.particles.move.enable || i.fn.particlesDraw(), + (i.tmp.pushing = !1)); + }), + (i.fn.modes.removeParticles = function (e) { + i.particles.array.splice(0, e), + i.particles.move.enable || i.fn.particlesDraw(); + }), + (i.fn.modes.bubbleParticle = function (e) { + function a() { + (e.opacity_bubble = e.opacity), (e.radius_bubble = e.radius); + } + function t(a, t, s, n, c) { + if (a != t) + if (i.tmp.bubble_duration_end) { + if (void 0 != s) { + var o = n - (p * (n - a)) / i.interactivity.modes.bubble.duration, + l = a - o; + (d = a + l), + "size" == c && (e.radius_bubble = d), + "opacity" == c && (e.opacity_bubble = d); + } + } else if (r <= i.interactivity.modes.bubble.distance) { + if (void 0 != s) var v = s; + else var v = n; + if (v != a) { + var d = n - (p * (n - a)) / i.interactivity.modes.bubble.duration; + "size" == c && (e.radius_bubble = d), + "opacity" == c && (e.opacity_bubble = d); + } + } else + "size" == c && (e.radius_bubble = void 0), + "opacity" == c && (e.opacity_bubble = void 0); + } + if ( + i.interactivity.events.onhover.enable && + isInArray("bubble", i.interactivity.events.onhover.mode) + ) { + var s = e.x - i.interactivity.mouse.pos_x, + n = e.y - i.interactivity.mouse.pos_y, + r = Math.sqrt(s * s + n * n), + c = 1 - r / i.interactivity.modes.bubble.distance; + if (r <= i.interactivity.modes.bubble.distance) { + if (c >= 0 && "mousemove" == i.interactivity.status) { + if (i.interactivity.modes.bubble.size != i.particles.size.value) + if (i.interactivity.modes.bubble.size > i.particles.size.value) { + var o = e.radius + i.interactivity.modes.bubble.size * c; + o >= 0 && (e.radius_bubble = o); + } else { + var l = e.radius - i.interactivity.modes.bubble.size, + o = e.radius - l * c; + o > 0 ? (e.radius_bubble = o) : (e.radius_bubble = 0); + } + if ( + i.interactivity.modes.bubble.opacity != i.particles.opacity.value + ) + if ( + i.interactivity.modes.bubble.opacity > i.particles.opacity.value + ) { + var v = i.interactivity.modes.bubble.opacity * c; + v > e.opacity && + v <= i.interactivity.modes.bubble.opacity && + (e.opacity_bubble = v); + } else { + var v = + e.opacity - + (i.particles.opacity.value - + i.interactivity.modes.bubble.opacity) * + c; + v < e.opacity && + v >= i.interactivity.modes.bubble.opacity && + (e.opacity_bubble = v); + } + } + } else a(); + "mouseleave" == i.interactivity.status && a(); + } else if ( + i.interactivity.events.onclick.enable && + isInArray("bubble", i.interactivity.events.onclick.mode) + ) { + if (i.tmp.bubble_clicking) { + var s = e.x - i.interactivity.mouse.click_pos_x, + n = e.y - i.interactivity.mouse.click_pos_y, + r = Math.sqrt(s * s + n * n), + p = (new Date().getTime() - i.interactivity.mouse.click_time) / 1e3; + p > i.interactivity.modes.bubble.duration && + (i.tmp.bubble_duration_end = !0), + p > 2 * i.interactivity.modes.bubble.duration && + ((i.tmp.bubble_clicking = !1), (i.tmp.bubble_duration_end = !1)); + } + i.tmp.bubble_clicking && + (t( + i.interactivity.modes.bubble.size, + i.particles.size.value, + e.radius_bubble, + e.radius, + "size" + ), + t( + i.interactivity.modes.bubble.opacity, + i.particles.opacity.value, + e.opacity_bubble, + e.opacity, + "opacity" + )); + } + }), + (i.fn.modes.repulseParticle = function (e) { + function a() { + var a = Math.atan2(d, p); + if ( + ((e.vx = u * Math.cos(a)), + (e.vy = u * Math.sin(a)), + "bounce" == i.particles.move.out_mode) + ) { + var t = { x: e.x + e.vx, y: e.y + e.vy }; + t.x + e.radius > i.canvas.w + ? (e.vx = -e.vx) + : t.x - e.radius < 0 && (e.vx = -e.vx), + t.y + e.radius > i.canvas.h + ? (e.vy = -e.vy) + : t.y - e.radius < 0 && (e.vy = -e.vy); + } + } + if ( + i.interactivity.events.onhover.enable && + isInArray("repulse", i.interactivity.events.onhover.mode) && + "mousemove" == i.interactivity.status + ) { + var t = e.x - i.interactivity.mouse.pos_x, + s = e.y - i.interactivity.mouse.pos_y, + n = Math.sqrt(t * t + s * s), + r = { x: t / n, y: s / n }, + c = i.interactivity.modes.repulse.distance, + o = 100, + l = clamp((1 / c) * (-1 * Math.pow(n / c, 2) + 1) * c * o, 0, 50), + v = { x: e.x + r.x * l, y: e.y + r.y * l }; + "bounce" == i.particles.move.out_mode + ? (v.x - e.radius > 0 && v.x + e.radius < i.canvas.w && (e.x = v.x), + v.y - e.radius > 0 && v.y + e.radius < i.canvas.h && (e.y = v.y)) + : ((e.x = v.x), (e.y = v.y)); + } else if ( + i.interactivity.events.onclick.enable && + isInArray("repulse", i.interactivity.events.onclick.mode) + ) + if ( + (i.tmp.repulse_finish || + (i.tmp.repulse_count++, + i.tmp.repulse_count == i.particles.array.length && + (i.tmp.repulse_finish = !0)), + i.tmp.repulse_clicking) + ) { + var c = Math.pow(i.interactivity.modes.repulse.distance / 6, 3), + p = i.interactivity.mouse.click_pos_x - e.x, + d = i.interactivity.mouse.click_pos_y - e.y, + m = p * p + d * d, + u = (-c / m) * 1; + c >= m && a(); + } else + 0 == i.tmp.repulse_clicking && ((e.vx = e.vx_i), (e.vy = e.vy_i)); + }), + (i.fn.modes.grabParticle = function (e) { + if ( + i.interactivity.events.onhover.enable && + "mousemove" == i.interactivity.status + ) { + var a = e.x - i.interactivity.mouse.pos_x, + t = e.y - i.interactivity.mouse.pos_y, + s = Math.sqrt(a * a + t * t); + if (s <= i.interactivity.modes.grab.distance) { + var n = + i.interactivity.modes.grab.line_linked.opacity - + s / + (1 / i.interactivity.modes.grab.line_linked.opacity) / + i.interactivity.modes.grab.distance; + if (n > 0) { + var r = i.particles.line_linked.color_rgb_line; + (i.canvas.ctx.strokeStyle = + "rgba(" + r.r + "," + r.g + "," + r.b + "," + n + ")"), + (i.canvas.ctx.lineWidth = i.particles.line_linked.width), + i.canvas.ctx.beginPath(), + i.canvas.ctx.moveTo(e.x, e.y), + i.canvas.ctx.lineTo( + i.interactivity.mouse.pos_x, + i.interactivity.mouse.pos_y + ), + i.canvas.ctx.stroke(), + i.canvas.ctx.closePath(); + } + } + } + }), + (i.fn.vendors.eventsListeners = function () { + "window" == i.interactivity.detect_on + ? (i.interactivity.el = window) + : (i.interactivity.el = i.canvas.el), + (i.interactivity.events.onhover.enable || + i.interactivity.events.onclick.enable) && + (i.interactivity.el.addEventListener("mousemove", function (e) { + if (i.interactivity.el == window) + var a = e.clientX, + t = e.clientY; + else + var a = e.offsetX || e.clientX, + t = e.offsetY || e.clientY; + (i.interactivity.mouse.pos_x = a), + (i.interactivity.mouse.pos_y = t), + i.tmp.retina && + ((i.interactivity.mouse.pos_x *= i.canvas.pxratio), + (i.interactivity.mouse.pos_y *= i.canvas.pxratio)), + (i.interactivity.status = "mousemove"); + }), + i.interactivity.el.addEventListener("mouseleave", function (e) { + (i.interactivity.mouse.pos_x = null), + (i.interactivity.mouse.pos_y = null), + (i.interactivity.status = "mouseleave"); + })), + i.interactivity.events.onclick.enable && + i.interactivity.el.addEventListener("click", function () { + if ( + ((i.interactivity.mouse.click_pos_x = + i.interactivity.mouse.pos_x), + (i.interactivity.mouse.click_pos_y = i.interactivity.mouse.pos_y), + (i.interactivity.mouse.click_time = new Date().getTime()), + i.interactivity.events.onclick.enable) + ) + switch (i.interactivity.events.onclick.mode) { + case "push": + i.particles.move.enable + ? i.fn.modes.pushParticles( + i.interactivity.modes.push.particles_nb, + i.interactivity.mouse + ) + : 1 == i.interactivity.modes.push.particles_nb + ? i.fn.modes.pushParticles( + i.interactivity.modes.push.particles_nb, + i.interactivity.mouse + ) + : i.interactivity.modes.push.particles_nb > 1 && + i.fn.modes.pushParticles( + i.interactivity.modes.push.particles_nb + ); + break; + case "remove": + i.fn.modes.removeParticles( + i.interactivity.modes.remove.particles_nb + ); + break; + case "bubble": + i.tmp.bubble_clicking = !0; + break; + case "repulse": + (i.tmp.repulse_clicking = !0), + (i.tmp.repulse_count = 0), + (i.tmp.repulse_finish = !1), + setTimeout(function () { + i.tmp.repulse_clicking = !1; + }, 1e3 * i.interactivity.modes.repulse.duration); + } + }); + }), + (i.fn.vendors.densityAutoParticles = function () { + if (i.particles.number.density.enable) { + var e = (i.canvas.el.width * i.canvas.el.height) / 1e3; + i.tmp.retina && (e /= 2 * i.canvas.pxratio); + var a = + (e * i.particles.number.value) / + i.particles.number.density.value_area, + t = i.particles.array.length - a; + 0 > t + ? i.fn.modes.pushParticles(Math.abs(t)) + : i.fn.modes.removeParticles(t); + } + }), + (i.fn.vendors.checkOverlap = function (e, a) { + for (var t = 0; t < i.particles.array.length; t++) { + var s = i.particles.array[t], + n = e.x - s.x, + r = e.y - s.y, + c = Math.sqrt(n * n + r * r); + c <= e.radius + s.radius && + ((e.x = a ? a.x : Math.random() * i.canvas.w), + (e.y = a ? a.y : Math.random() * i.canvas.h), + i.fn.vendors.checkOverlap(e)); + } + }), + (i.fn.vendors.createSvgImg = function (e) { + var a = i.tmp.source_svg, + t = /#([0-9A-F]{3,6})/gi, + s = a.replace(t, function (a, t, i, s) { + if (e.color.rgb) + var n = + "rgba(" + + e.color.rgb.r + + "," + + e.color.rgb.g + + "," + + e.color.rgb.b + + "," + + e.opacity + + ")"; + else + var n = + "hsla(" + + e.color.hsl.h + + "," + + e.color.hsl.s + + "%," + + e.color.hsl.l + + "%," + + e.opacity + + ")"; + return n; + }), + n = new Blob([s], { type: "image/svg+xml;charset=utf-8" }), + r = window.URL || window.webkitURL || window, + c = r.createObjectURL(n), + o = new Image(); + o.addEventListener("load", function () { + (e.img.obj = o), + (e.img.loaded = !0), + r.revokeObjectURL(c), + i.tmp.count_svg++; + }), + (o.src = c); + }), + (i.fn.vendors.destroypJS = function () { + cancelAnimationFrame(i.fn.drawAnimFrame), t.remove(), (pJSDom = null); + }), + (i.fn.vendors.drawShape = function (e, a, t, i, s, n) { + var r = s * n, + c = s / n, + o = (180 * (c - 2)) / c, + l = Math.PI - (Math.PI * o) / 180; + e.save(), e.beginPath(), e.translate(a, t), e.moveTo(0, 0); + for (var v = 0; r > v; v++) + e.lineTo(i, 0), e.translate(i, 0), e.rotate(l); + e.fill(), e.restore(); + }), + (i.fn.vendors.exportImg = function () { + window.open(i.canvas.el.toDataURL("image/png"), "_blank"); + }), + (i.fn.vendors.loadImg = function (e) { + if (((i.tmp.img_error = void 0), "" != i.particles.shape.image.src)) + if ("svg" == e) { + var a = new XMLHttpRequest(); + a.open("GET", i.particles.shape.image.src), + (a.onreadystatechange = function (e) { + 4 == a.readyState && + (200 == a.status + ? ((i.tmp.source_svg = e.currentTarget.response), + i.fn.vendors.checkBeforeDraw()) + : (console.log("Error pJS - Image not found"), + (i.tmp.img_error = !0))); + }), + a.send(); + } else { + var t = new Image(); + t.addEventListener("load", function () { + (i.tmp.img_obj = t), i.fn.vendors.checkBeforeDraw(); + }), + (t.src = i.particles.shape.image.src); + } + else console.log("Error pJS - No image.src"), (i.tmp.img_error = !0); + }), + (i.fn.vendors.draw = function () { + "image" == i.particles.shape.type + ? "svg" == i.tmp.img_type + ? i.tmp.count_svg >= i.particles.number.value + ? (i.fn.particlesDraw(), + i.particles.move.enable + ? (i.fn.drawAnimFrame = requestAnimFrame(i.fn.vendors.draw)) + : cancelRequestAnimFrame(i.fn.drawAnimFrame)) + : i.tmp.img_error || + (i.fn.drawAnimFrame = requestAnimFrame(i.fn.vendors.draw)) + : void 0 != i.tmp.img_obj + ? (i.fn.particlesDraw(), + i.particles.move.enable + ? (i.fn.drawAnimFrame = requestAnimFrame(i.fn.vendors.draw)) + : cancelRequestAnimFrame(i.fn.drawAnimFrame)) + : i.tmp.img_error || + (i.fn.drawAnimFrame = requestAnimFrame(i.fn.vendors.draw)) + : (i.fn.particlesDraw(), + i.particles.move.enable + ? (i.fn.drawAnimFrame = requestAnimFrame(i.fn.vendors.draw)) + : cancelRequestAnimFrame(i.fn.drawAnimFrame)); + }), + (i.fn.vendors.checkBeforeDraw = function () { + "image" == i.particles.shape.type + ? "svg" == i.tmp.img_type && void 0 == i.tmp.source_svg + ? (i.tmp.checkAnimFrame = requestAnimFrame(check)) + : (cancelRequestAnimFrame(i.tmp.checkAnimFrame), + i.tmp.img_error || (i.fn.vendors.init(), i.fn.vendors.draw())) + : (i.fn.vendors.init(), i.fn.vendors.draw()); + }), + (i.fn.vendors.init = function () { + i.fn.retinaInit(), + i.fn.canvasInit(), + i.fn.canvasSize(), + i.fn.canvasPaint(), + i.fn.particlesCreate(), + i.fn.vendors.densityAutoParticles(), + (i.particles.line_linked.color_rgb_line = hexToRgb( + i.particles.line_linked.color + )); + }), + (i.fn.vendors.start = function () { + isInArray("image", i.particles.shape.type) + ? ((i.tmp.img_type = i.particles.shape.image.src.substr( + i.particles.shape.image.src.length - 3 + )), + i.fn.vendors.loadImg(i.tmp.img_type)) + : i.fn.vendors.checkBeforeDraw(); + }), + i.fn.vendors.eventsListeners(), + i.fn.vendors.start(); +}; +(Object.deepExtend = function (e, a) { + for (var t in a) + a[t] && a[t].constructor && a[t].constructor === Object + ? ((e[t] = e[t] || {}), arguments.callee(e[t], a[t])) + : (e[t] = a[t]); + return e; +}), + (window.requestAnimFrame = (function () { + return ( + window.requestAnimationFrame || + window.webkitRequestAnimationFrame || + window.mozRequestAnimationFrame || + window.oRequestAnimationFrame || + window.msRequestAnimationFrame || + function (e) { + window.setTimeout(e, 1e3 / 60); + } + ); + })()), + (window.cancelRequestAnimFrame = (function () { + return ( + window.cancelAnimationFrame || + window.webkitCancelRequestAnimationFrame || + window.mozCancelRequestAnimationFrame || + window.oCancelRequestAnimationFrame || + window.msCancelRequestAnimationFrame || + clearTimeout + ); + })()), + (window.pJSDom = []), + (window.particlesJS = function (e, a) { + "string" != typeof e && ((a = e), (e = "particles-js")), + e || (e = "particles-js"); + var t = document.getElementById(e), + i = "particles-js-canvas-el", + s = t.getElementsByClassName(i); + if (s.length) for (; s.length > 0; ) t.removeChild(s[0]); + var n = document.createElement("canvas"); + (n.className = i), (n.style.width = "100%"), (n.style.height = "100%"); + var r = document.getElementById(e).appendChild(n); + null != r && pJSDom.push(new pJS(e, a)); + }), + (window.particlesJS.load = function (e, a, t) { + var i = new XMLHttpRequest(); + i.open("GET", a), + (i.onreadystatechange = function (a) { + if (4 == i.readyState) + if (200 == i.status) { + var s = JSON.parse(a.currentTarget.response); + window.particlesJS(e, s), t && t(); + } else + console.log("Error pJS - XMLHttpRequest status: " + i.status), + console.log("Error pJS - File config not found"); + }), + i.send(); + }); diff --git a/assets/images/cowhome.png b/assets/images/cowhome.png new file mode 100644 index 0000000000000000000000000000000000000000..c050febd56b51c54f39d9b1818695950ed8b34a9 GIT binary patch literal 214417 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�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

2o7 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

s>j`E67 zEdrip)~s{t|B|$BZC7B1LZ(oNeWZ`r;2hgYEgkjpxq`p9m0M=rc*s-RTvWJl_pQSF zKn^P`{d;S9WaCU-Q*2Gucc<78rD>^oE%44$d83HNe@QEkvPl)6E!Rb zG{6J7-w?6c*~3U|ze1B8B=bjD<>VB);_cJD;_Fr!i;1z3({)P296a1IAK32F*s!vA)Un^tr5^JQ)!bdMl`oy&4}WN_4_^31d4#oF|O-+rhmdSDcgk6?+gDZ{?JT5)+rmn)K2rkZ4nDpd zC#j*x=MU*Ww}G6COx#UN^?&2rX+T8B$F8ZyQ}B5YSW}qkiS`9apH~RV6?CPUBZF2) zbx3(F^AI9$NMfhH5IQGhMJf7VpT8RoOb~dveJTDnR`zQ9mNHnDhpo)cEjXgY|NA>N zgP34>$sW&V!`wayqZm)vnmFpG>MDDk)TL{+5H4!(Q{OnEfhwi?-p`Y>pf{d5Mk*Xd z;Jdj9fBCxwOQyj}NEpFyBd6>@l-MEmG}lVYCgroisT=uU|G^UQ$VcEdUtHK%H++%D9eU&9$1cY%puu&sE#4?+el`z7*? zI?^|S6c%JHb{4r52A~QzySQ;JsE&Y89@V_Dr4cg{C&?NQ#L(G{d&>AgbMC|qR*|Tg z77nJ*>47ND4l~L9iP;{axSTPp&BqaGoxf>DIpTJYXy4M7)bRAxhx{WUVEK*vUK=@hrF+2t!~1hA#RYd z&!ZVRZuRr!Z+2N<)Lm1dFEdp1hf3B@+6hNy{}Z7Qi|3aJ>coW^s~&;h^tt?`nt@4D z4oOK=FSAVNkoXw=kU+@v`-7*obobVd4431nenXd~r@CUF=E7`Nmx%2G`8 zjc`^V`=ow!!)$-VYE^{YM1fX-PqrOtPey~DtEud^AjYoD*V3{`ozltmfooyWIl@d! ziKG`5Ad|U(lb5wA@%~*cY@%cVJz_jRF6rrC^3Mfv$1oYTBq5tbS?~sit_{4^tYFJE z85~)8*<%Z#Mz<$8o7&^I@vzl1CTmrNii+3n(YgoTPG&%b#A+EXtxvyTQdSF?(Pnf_ zVMroJn2XGRR{oKx=r?D4kq@2w%S$Qn9Mvm_ip1S%8fLFN~nh&UH#3cOBq>m~4 zNm}u4!xt|vbX4I)Q0nYh?tyA39{5Pck=~XJkgoS&a?DULx}l}d zcA|Oj6x{74YC+Yf==4SlS-SsIbV%hHv3+awvu^9!rwCmsD7gss#dm9d$#vFF1A=21 zwhmjo_>1m#tv{|l!-6BS9C;e{_KKDuH%T?;xNU9E147A-vpWUKk!r#+kzq^R;iPt{ zwY#y(A-ToDL-{$MX1-k)B{1_B(E-WFx24N1MmFQHanHah8~Vshic6}m=P(s34o5H0 zV`bq^e?Ym8^^qs5vA?t@rH~7pNUE4!V>N?D&zBoqdTD+%Fiz@@PdHU)#%QSQO1m+JV5mRnGHBn4iFm>w z5M6B-di8bE7Vy%^Pr}kUT|Up5oQsQHEDhC=dKrmY@d%ELC}S2M3E63Dn^AT|Q)D!b z3OqvLKt$q;%;FVa7uw^(Poi?f@5F(J%_B(6kV#7hK9E&lK7@*SG0wa0RB$|hDQX>% zx)piyhO1-%uJEQ;UcxUWSJaC2tM^O+x<}R4mEi@3-pNA91v(w6xcl!+qO4e~cUI2>( zsT%_+FECTiy4&ugcFM(|f=J{awsND^Z_(ZH(D(cMn?0x6;G#{YwtF~9jn1;L$QFzB zy^=a^sh-m4>RsCs05IOc5Q3RnYsNtPv8?4oEEfOG!*BMlfpB0tV750%GRIdseb|49 zNN7;aC-tninH1Mg8V?Tt>UcS`dkh{Iw;8-`YX_RE9Ni>ii@Yx2(nL=LGtWWMbnpG=t}XYhNu40>ZQ-@rrmCVLzB5n0{_ zRdKu@LP)h4idA|6ikNVFY*LK+4n4J*+v8Cst>iv|czm!*IQdO@iTp*5Jx*RIYy)K0 zTc~7sT`O}<7(2T{Z1nR~K{7w+eW2vJaH{N1cnAfnFDp${os0e0m5GCMG>E+a+A&Yj zmG;ibs=v-)Au#2@$-**%yCA`0LJhc7NSvClVl(XB+t>aLHo2$|M%CC7Dn9S3mI%lR zHbrbC%%2F+mH4-S87b5ViIbALg6kgzZTy$a2BvyZAau4>c%4Ef4yx)YW{0)KC}0U5PdRyeUq1x#Lz zHBR<2G2$bw6Om6h9`uS~``83wahu8VepEd762!xwk&J)?tt%T-9XmvUx zJigr2`u1k@OKc04=Gw!!ws;8UkhZ=+B#z@8f{G@7Ca~VX5A?1h_I0>Gu(!CoOn`wz z|Jx%(7bl6-tPC~p`4fCbPSihM8E^`wLTu)d^gUi+*86CI(wx8QJ+ICkH(?o#rq zfgc)+L5Tk;~sqWU+~ zdhZ5m#3U(6!FLFBWQU}p_D~4SOfoJHyg)(dWcBA|LNuN>@5EzLrnPF-O!d@lpX?^< z-HEL}Q_A>L&drhpubT4o+Z04CEK$6@-Uu#8XE-!V^|wJf^}AUrmKsV=;%;D3!YXqP z4Pr#+*20$3P)Iu}UF+H0)OQJb#T@19eP(ptH+}hX@y+$~+tJL%_`~hk{}wW_C1;vO zWD%{%hxxsKx1M^}3mk=B10kt%u_v#9-hndzQ=U3asX)2rqVv61X9;s#ebnE!$@^-P zjfDBtxM@pO`to5hwbKm?2W3XWnrZNNy?uAGRocXq1K{* zs(hc2h#VEInK2vh^A0lK$iAaW=Rd<0K)Kiif*w`~+Q+fzLnvTexO%LI#{I0wd!xi| zWp%NvXWj)Xw%4up8ASO?T>LGv6fpX-$Z~ z-6Rb$ud&@e^vk@Jd!OW5thqxRka!Tj&(^T>w2zK?^s0Z3P!)WhLADvod8>N?<;hCb z-*z0~3OevNb}%x!m-ad5VZOfI#jcr5C*rv`H$xyuP z*0MugUSw6owV9hnVj?LQQOSk6*Yx=jpdtQ(pVv-`nlJOiK7BL+3Z%Ep6VGu#cYSfz zt4@t_#Z7f15u2mGiSTcIO>G~(i*ZZP*52opQDjJVz4e|Uzak^S37Rd_WEM`u^fJ=Nsz^=@B{oD$}T&vv) zrZ47;Uq%7_jqU23Lyk*h&IiG1h~xY#b6#V@mhGyDBB||s#7gNu zKa~XIJS{t+D`|mGU#df`H0Xb7EpNVq9RHY2xEBBO&0MLzLYbLF1qs~Mwfm5s*X)u! z%uuvD{=vMF5mo6A!UK&{9q@0Ru`ayC!fR1h|77#-T-t2XtdSqFA`j$TcCaK_?DV0Y z=f^yA{D82vbUZTzQo#LV^K`?pTz>kkcSDvBK8N?>IO9P<&BSfIYrS~_t5lt z+lOFonbiZVccnv`s5)hhLwnTHzD=ILXJfeLd5H3du>^VFXuAKPNWa+qEp(P(BPapy zUVgeLye1jd_>!{B{wad|&F*5oSd@Q>h$yvQpU$OiA0wfDV{Wot5D_0~maiDQvMag! zPh8nyYT7!G2}kW|vhQr#wkz|{MPhrKZE9IrkDRbgl1F}T*{6IzWn87q(wt6W6b}pM zkz>tN=Pu*A+t^sPYy3#jPKu=5abtgTJ|Oj3sCbw(33$CIL-oOvAh^eEtvD%59Qf~+ zBmV#!hcJBF!KqPwHzM`erRGKpE*!ah$6wU;yK4L(FCtT%B|}TIOQHf!jwhbgk@N`&I<$-*7!8f*jY_T; z8M1?2RJuTbW^5Is^axvAuRHHKG9Zpi9!YdPcAxMdQ9eDKAl0334k%3STQWb6Yn$jG zko7w}wB;vPZVD$!m_H?ygpnL8GByhp!P?%4zB(hGpS3BfnK$J7lEurZ}t(VbaL z8d3kzy#;lH`=lbin-DERKvF^#qJF1Tn77+;)VV1)E7!#gE7F6*DUQ0j7+fuVlel;S zRL*eiLUEc5LoW?vCr!Sj{s@@JZImVH{u{dGicK* zM$RfzBzK=_y!?9Nto-?LxOg7$I)vRjy2}sunL@zFZmEdaExgprBb>?UTAtq`r$Q7g zkgFRP%jr50km?N1A-!MXJF_*Y*Jr^0N%vG%N@pFH%GGW|$mid*Y~ho^UQ@L0los8y zTEMzE%C>EH@M10+K1&Dx$j7M+eNk81NzkIlnF$XJzG`PMS}H%Uzn^D`V52Bo_%OZ{9mBY{>2zVW6qhu zsTasr$J@`nS3C5(HUpf2CAGEC$I-52T>+}Y#4L^`*evkUQGa+uz-CCRC3HGEEFfEP z5y{)An$_%`Mkzo@{PA*_qI?Mpjp2y5alXDAm-rOvhtKaj z9f)$;WS`E^S1~Qh%`-K>8zYzG(_6VOi^jwG-p>6}axvG+%-sm_*gy#p1zShvKXN^Z zF!BeO4$nP*+4xAR6@Rs?U;EXkl}y9{E$k-L<_WW(jGcdQSD|oqYmNM=qpRgLrP~NQW;QwT%23|b!DtOxFeHP*bYVI3R+qiN4!L3SXM~?Rl zR)Hl4Y4bQd0>SMg-pohNM9J=57uw* zb+yk|hX74<11!U?a0mletthN?>=B1_WWPJ6O4d!LM6lX6z!l{lUvpusm(9yn=@nOH zm7PeBAY4YZ^d|IzdVUEsvn^WK9f7fKu!yA}aXRozL29^5a)r&VhMKuL-6Ejrg7I)( zk=janSC1TXtx)0fcT1N;ep+Bza6m2{s<2$qY8gZ4ot-*5=_uHvB8+bvT6ania5!_; zu8CDU#w2&2AZs~5cVJP$}SU)GR^jJk!k548VC=XlViZ>D-# zcNE`pB*uc9DJrwY32RyhpN1cj>DbEagSlPvvB?@84qwOtg?t<9dS&)%=Wi5$1jHM` zMjOFm((*U(uF#JYyj_=2 z-pN-{-Z7WLGO}``lQRcw^As?E-U+vWWPmAsz5}SAhccyAjlOJ`=}v-=0(D0_&^~W{ z95Wyd@O-Rha?E7hz^{qqvh?Y6H78G-K}_Y;YE52(Ikb4G$-9Mv4Qb|aTBVNqwSbcB zr)=w2#<PuQm`0OQ5J8V_M`2|CI7i;e7MNSsQ{Y2Z4Cpoh^WZC|@UHNo7y=>UUJY zXq=V7@m2Gc8iCw(T`yuZ>`aUeysY5zp;Ub1lgKH5lc$Yse_F6xW#l6x!?h3A|@Is4utJlRzno16LFP=G050KJp$0}1M>{k|4? zCtZm8%_WVDN}Gi>qj0@T0MeSKTWfbQ9+_jU8J`Ar&9QV~T|CkBHd6jS$E@p)hK~yj zl0(FSw{zY2@wpT!UcOm7%e0_2e4!RVgmMpiguMBxAqr!HtsL7go{sw;|G=iw)Ows7 zk1UCqxk&XPeA=EwJXSkjxPaMN>Wu-rnw~riC#CdRO@-(D6G3o|g=`XW2Vrz<<9R0c zUQVfl;L=FItNQIfqoGm1=11DlQsB4X>V8e_Eoojyn_sK)`M=YeOJ7Cxx#N(Emfh&a zQdf+x*yspb{7fjzjeK`o(3s9@ozxqOu?IxvuJ2Hn%Z?D~BVoPpw2n}i0Fs*_Ivxc~ zP+Z4blNQg2!3Ip|HKYI)T2(Lq2RYlxwzd#w5_iytwF$Qd#+OoN$(U$${@xAdny2u& z4AQJguy(=6>G9l}5C5j;pg=@7lhDWONPK--ykZ^?_Iyu)xuX$5%!%Kvk`C4^;nRmt zrHq|FwQ4>%Jf`2L22|ZQU6E7LE-AgX#S6Kq2cocyt;WUEUkh{gvc_oWPCb6LE=|(g zwPv2Ydg^iQUqt$_pEh-R8#-S4&=>7qBxRzUL!X0Nqh?FTN88~7T7Je~We#DJL6>ei zHFY(1=~Q+>T4>DPl0D!Xe%hNVpZ*8c|AOfC2Gy*_S?Ki#lXP{1v%jvx+jXc3{(=PJ!HJVqFqEy-Z$(W z(Hb;qsn5olH4?}Ji$+oDU1w0;r$-`sy_db0wZP*RR^4|HX91DVfR0q>IkA;W6(*7s z)XxyIJCl1Y7P%+<8%>TNZ8p~$x}H^2 zCQA)wO>t0lo;*!!g*+eSXLo?m&3v`M;hv|<0$`zsdd&x?;*2&0ba^MK17=YEv5!*e zqX?4Ix1{N-H8MMzU)G>c0+_beOE$lObq3XT_;P5|8X`|l4JCJ5hi+v{DY@qY_+Xck zx9ckM7OoXs&bIE`6Ro=McaDjUk8vIFWNp`pmATs|BJa4nL{cl5dm~ldU`fiLjLDy2 zZlwt!QSIkP!+ZnnS?#5!wyJ$+>T>aDk9{1i$woQaJS$Y`hk5-RQT^VZD717iI-PE&FGtYEZ)xMc6Zxm2gzJ#0=zm~L>@C<7Xl?^zStt|2 z){a#B?cvB$*n`5Az0g}Bn^Jmmy^3acK?{cOw1*f#@3c!7J8@YeHd1>F8dCJ4h98cy zbEf08X6FYhNrIW>G0?VGK>W@yQ!16w^!Bu*WECeaEPeO!zYrRBzJ#x37 zM!t0_w;Q#*J(i2)qP67BDg#{TvAT)f7bK5B;O_J0?m z3R&xze7!|$DF4q-qT1Z6GCpAoUsiB!KU#j`zA-fvn%zsy{s09WwdL!+JjwF?F-|o6 zIvK)oo|CG%o*6&x`H}aazLOaauA7p7yRn7;R?lWqZatbWy+^sn-z-x4&fY>&Y!jzL z8_$5?)rWj@b|L?wBPg_X9M-B3<(89S0r69E(PGM+0AbX-O%~oUfW8$y28f0&w!*a+ zKypo|h93{K8Hp13o$7IJ{^Djdn%QejT{9xr7}}m3BN(WlyY-@nah~?&YxBL%gO`_L zz;8;3ZjR|HNw?f5ylfj*Elm&Y+HfMNdveYt0Xu za|A-ob@F1u>rYBb-7qkQP&CE&$Jq7eBj>Gr1pK47pb}|%*Nc?i3tMgOp3G`gR=X4e z#}+qYfrTQ8if_A;BIVuez0}O!akiQIW4-EnycdI+RQ}{ef_s*8AtU*`xM-twryxWn2m5p|v|v-S>wML98tnXo+Z3+~g`(vqec$X!0IXPlyE|x+ z$t{qUR&e@%D09*W8@>1z9)OC6EuZ^_uEptZweKGvD;PFoR&PqFju{*0MeB0pSK3Xb z1s)yz*rX9R4$Nbs)+J$GSK$E=pO7|WJ{6pE6=D?Lfn{xrtrT0h93A#__`$j6e-D_| zcYJlz;^*PY|xAd6YG23W{xgC_L%gv~Xkqy~A$j&7YV^?lRvB ztvi(}pLq_&SjNPfhb70d|HW&_G5whN5Z1C;dvTwmgWa^Yql1MQ==FDcY^~k%=Xlp3 zzDweuwesig3I@}LS+L51@eS0XU(MNz3j;bp{?R9E3o)tDu3c>3a{zgs7<;|>+(W62+jr2y75Si2C6|> zgS7@|7ic>rEtSBqo*6#YBnrE92+`CJi<2~o{u;(p#WMC0GSygwzU&|9g zt4$swYv=bVZTRn2{q%{kX>5|y@V^L{P30z!+X^QjSTdDX{+-){HUd|SsTd#9hW$Z> zr~eBnWSu9~#|oyQV%t#+>@o;3=B3x6@s^t>ZM>PjNmN&-yS4ER9p~%=y&vGt$giW^ z6COb^s42o*l$c<^R@g7?H6-FZk`aJdgjxc-K^s32bpdunw`va)V)=f7Rrx~^rt9^Z3aKXbQFMZuqMuu}TWr{X*QBdj{R z@>Y{C*Z1L)E(nMji^JLn&^Ozxe+qSRJvU;w?XDBTX%QBlMnTMg5% zuqvK-Kt!sLL+yUK9~QU9t%_l+S4hwu0LT1F`@mK8IVZ2y?HiBR;MMiLMP;JsqN|XP zjJ)6AQxsS^l&YToyIqTZL)s6Y9}>t9J{Etx-40}hl_1HAMtrYR_4vO~-L%OLPnUnN zsWmwSK;PnmDT%l@%QqW-$I8Ok?qdpkk}?9+_56P(Wlj1x5!Y&~F)Rz!0#}~Px?_5Ui^2FKH|p~Phl%R5LOir(#x`- zWb94VpPq~w0>~<;>WPjwO+5R0J-iWQbj+Zvoo~eZ=cvD71fwSQi2?Mj{Na(emp0;E zk#}qts(j^Un5y#|{k?8&T?4c`kj-Vfa9U)7f+l`M3wveSY?SuTx528I6kE z+W^v!?x7HhdDMM{6eO)hs>PA`9>-zpzCH+PdU@?t=Q_!gUT@XUxR(5j-=c7p9Zcm+ zH_b0ZYP%P;kbdS>SEIhUg@8CkKOGmrpYslVjo;D@y*K0bq+^k1O)|$vS%ZLx^%i#0B6c76Qkl1@Sro1%)<~*@Tc_H~`?v7vI*>s8|=#2E?KTzgQ zUs2U3hsS`0C&P~bo%S~chHLYw?uUITs_Okp#asn-rH`IQMQ5WStKU(N@ZWT{C z4mtS9J8lY~U8ula&SZ!PTTNPm=L*H8S-rUv^fjBb$IEM3BD+BpTy!1f9{C`u3~q6H zUV?UOyA6XNw@moNccq$7PeCn*Jw&9M`^KYZy;>XTn$Ru_ElElGMksCIx0E^gW=ih< zJ)S9lyWK=5xv&BBPO?y2I!*R9A^-PDm|we7&AS(qY z)w|Pr)uq`x5$!l9rU(sR#~Tra=l_dR`>)rOL!=J;!>axA?^Jx#BNQ${8_ed^Bpw&P z)qi(51eNy_QJ`dV=nH|wkHENlspjj05zwQaC8?dYY0;Zz=kA}qBl@*-IaB7Gjd78w z0~Vop%*7~1vu1PdyIs!-m-i42KkO4DK*iv?3lP}Hoi=nfW$y4TRlM*Q2&)@5q&pcM zP26FVXS%>$3Ju5>NE`bb6`XY=rSI@Dz`Wh9H0`xkwl-cd3}*G+sOpWw5bQPvd$AxU zQeEyz26HWJX<%nIQM4R+<&RSO_AgQrwDKg>b}+AvQosQEMoF~w9Dw}aYV>oy1+Ar0 zsrtPONrdbI8rl>oJFT%st~GT91dgdvX?HPgL$!v^Po*Bq{WlMf>#-&7C8zH5_G*k4bBD2hQ<%Zj(DRQP=1AVlxs`u-$Tx zd}>2wTakhiu)@{%Qef$5)NMbCgmMAIE9?CH2Uqn*R4f{2v>%`&I42kluDuoAxb}ss z0L+VdQg&^7g1OwJQGX`+7LH?kfn(YfC}L80!rhd!&kMRNY-ifgR=BFrTK=cMLCb?G z+?=_c@3^3xat?n^aCA3BHX0O(pq-I5!3WCvx^PwrMuxyLV0g*(|P-vXibmte+`!J;s zdmcfh>)QPp>V%770KF3~+LlgPc=K1ISi?Wa@?}x|_Xpc0E?pAzdKKjqSUceE>Wl7F z)zX1*dMpk8tnn-VSn5zjsqXX2#^#SwnB@TLD=4&LAo*sDjyc|Cq7&hYJPIrvi{EE% zY|PgD9ZY-~gRr1W`XgmVBCAa-72Kq)Lb-D0Y4zjbk_&->)terol!c%WWL7vX( zi>&+NXbLSK;;f}xJC`_t|0MTXZWaFJW|6(mi^7v*M?!Ne&Gd0!TD9NqE!U?-FW$%Y zkn**jKnY(t=!$^1rPSrZt0`lbw~)u*IqBLWdaQqt(#Cg2e}!WpfbWHXx4y_g$%rXP zg^~>GgSuQ4SDb4~Ez;25rp)p8!_+>VJ4kNkl(zZP44`kLTLAvk<)|iiiS)5HOxvwd zQ`cP5ZHm|NU0Q3`W_BhXo9T6Kx|YKA7%nX;38hNAUUCJ5i53;rfM&H2-NCN0)?WR* zh?F6UJWeB%3>NdM`4XMB=$ZChM%kA>u>2{ic=u0MxS}Vj$+f?4I=FPC2$ywn0vwZj zE~TO~ZbF)1d3(}obFXbhP?mMg<;U7ZM&h+|{?>zTvGA1_o_j-5=AX6VnwK$v-kQ|y;A1Nv)lbk~&Zn|_9|O}IWHUP*<*u}JCveXFTfCO8 zKWjmNZ(a!mp4?i>J@ko9eQ05NLu9`HIdlr!i>h8eDJFnV+d?B%c`(cGfs3_Y`Wo{m z*3u*OPaxAKld>j$*q%#oMg8ft@T9$Ev3xX?p}ZrWq0AlIbxvDC4?Do`j*~^S+Eo~d zg-!<7f*LCL)Bh;%xO-szY1aCH*bKi_@zN7iJO}<=wKcVwzS;bA9k3-A*aocRuGN%x z%H5QE%w1c1mo#YOXpU0X4MB(#SR1Fn;$7e?N1O<{+&O7x8q6VY%aokan3)+R*PP|FkQuvb!G^VdQs9pSpf9 zHBjr%+SjhMdFLTk+PQ9^;7H{bS=sx&D$+)My*c+LJZV1o({F%QFq9g89&Zn;=At8v zYri-S>1*!-RGU(%Hs`XNbq<&ls@?_eWboLm0TOkRfAJV}-0LaQNB#j*<_s!0`d)6i znyBI1e4Nm#K~(epF%DSBO~5H>qh^Z2vu~!1Ngu#}z46Ln*?YW8We?tn$ZNZDo&!2= zN4dH?XP@zB^?Ul*SyXuT^{D=a>t(d>8n@yiKpRhkHa?bWKiQA`^AE8?tA~iFFW)Z5 z%D~P4lz_wQ&{U%vIX{;RP6}U{<&-w^b!g>Jkhklvn=0V9;w^7ALmNQfYL;^IZ$xUB zR`_i}=ciKXz4wFR<=H-U9#i|$wdNfk5%2P~$4o&Tm)vu?C^+jTe(CN8d#`0oJnts}BoOUdS5BT?tIJDBs0SP?I!^jShhr`$|g6FvdhwXZv3 z3y2FrEy*gq|4b37D6)rP%^dmNnUlYvqVum6X~TbR@$jC45=tHZJ2iX<>xJ9=+sp_~ zN?IBM3MYR}h38);(uYlJ@%1{0g{GMH z8pxGU(DBy@6+>W7KKrMC;SisTx3UDW$gZ<7BVz zXy`S{FYjfQKYo*l)}dTzy!l-F$Qd-4AiBtmOQYB3dimTZM=9^52SrNH zLBeG{ME%$ML!(C28#bJ$pp5cPK#JHg4~yg;D>mt>0@2eMW51z>9{}jC6wDY+T^o7S z7W3vcz&HO0Qquk{lDn_OXn%QaVt=lZGzLSS24w=$-5#=24Lc%7Uv-e9Df}=$F zruQJ-b{@1SnOxQeDa!hdCdggZkQ%aw8)b+1dQ0DG0<9b_7DivEjC>qSL0&{n< z${sjT`2W})CiVe#whAC2iQ`Z4&Ta{h&SKHpxpuiR!5HLqKms4f0)QrD5}K*>Lz?RD zH=`=#C)ktQd_Gwod|dh;Cz_N zx6PH{@=y6M`m(P~)a`R!Y(%u*N}<(*spg|25XEiJjWvV1sR!c2Ly5YU8K;9#pzgDi z1V!^GYmX1909gcSW545I$<3Z!>d@)r>A8%;s|L$493W>alj^)Jxa!-^Q>oyzTPS_} zN4Q?Q#%65xy~dp=gC#>Nx2Nj2_MnCzj}ZO^qhvgRBm!&LY+Bbe;XhPjiB!>*NnIDB zV(mRXlSPl?Em#Fh2wI$udm4G=^Wf4mT6v-taULcc#lAxT_jfxvr;BaUZJv z=pfsl-jt@U`J6VnyY4b$($|!8=+lY5Z=|PHLSwsz{By=3D&MZm#;=BHJGE!`wM5^i z8Bb9lZOl|k?!6Eu_WKed942MdQr_XuT4fL3)Y#j_Ms+&{4xXmGqn@RLGp<3ypo9sd z?YW-PtR9%Z1C`x>3N`$+zZG2GUs!B#V2v7v3h5_TEt8W{Y(Kdy0j)sXY2L(@Al02{ zL5Th8y3Q1nFm>S1l)d*2c>m1wDsTH$cZV0X{ngDCJ2VAQcxE7#-uD32eX&0r)vm~Q zcOabGe=hkV_(Xm!^|<{+ku~{)*1AEfZtCH*?q3g6Xf5h<^HoHMw!8gwk-Ptkt#!@K z9apAZ$sW*w42o2Br@-2Q6fWzI6sXmdT(k;)#!~X6q3c<45YgxzMw_wc9Zuo)wwrtJ zTY4U>MQAPqsP$wetSg)qT+@#hpY%ILYjd1#g1m84das7B{6We+XZd|G`($Y zd~JX7|FJ98Pdx(fez+xiZ~l z?f)M2xamY_`kU%`R-XWq5sQ!hmoW1uu)cfB@w{`b50ACVn<9DY} zSsx0O^ri^fmRb>TLz(}V#9(ek>+&eLZUFgLj1a*!y-@iq8z5CjDP2lXEo&8}bX#bp z^qwoy2TiBcUUS(>(o$L^>Nt5H7E+cXb@>#4TO+t^xD_n!E7AsV`rEIV_ z*rO4FElm0?UVyZ}CL*dmcfdiY^pI zuX$9^V$g89oFTRVX@OorAurN{Y_=+~Uh`OHmSBuY=?x+|zrsrEKTBlp@D^o_{t{rn z82P%b0x(hokJRVEwE{t7>1fNpWQ+){*`7kB+oAPk0Y$6xpwXoxf4Byggi=cBxdfWn zV$?>jgO-My;v3-@25%7c>&wX71r~>{E6H298Z9r&P(z@@=4x9dkKah8kNpz>7P7J@ zewC2WVthyg}hgJ(=;y=fW ztVy3Hazfa$h3g==#Jh0`diQ~30i-GHrWrKKJP=<-nZ zS28Fv=(9CbX+GXezm+ytdoUdr9=&a(_l;F!Zxd>rm-) zRs+DV`0o2*CjNx-54#s;;`Xny3m z)h}^kZV;NK2c6lDrqbK*N0d1O^Ju$!4@M!FrHQ#}%SN#pX6;IAu17uk z6@#eT#aD~MQ*LY7nav+1O_!n4zR~H@UD%@>b9=Y2oedkl!;Asey z`U6_sVq1gHtb*mC-QopMb0Ha4l>wC8WmRjshBjeoT68D`u@s7w^+e&99jN}RBQ4+b zoza!BAA;P}W^^r8OzTnw;u_2yKYE<$-7&Xo-?>Xmms)whxs<){Lujb-GPLsI7ERh5 z)MgZD2^VU!$(RduYzjywSU>eBnBVWWf~$*Sm_9R)E|*?O`KSJ;wM@j#Q3vx%q1w+* zqLK&xMFl6{CkjuxeM=~51y&BDs?ScNx@m`^$8#T;rE_G8oR0RD$jgsTBM)^x>(m`5 z{GMl`A2SzzX~2|2X>e3ys>w@WWl;B|la)2@2hshsODS#OPn&DnwCVKAVN~|!Rn#zd zJT!6vfLF!8G-#`L?Glh0UOb??z?^?`?!^uA_**vZ;CI&gk|WY|?=32`QU=Zy86&^8 z(no)Xf!F2Hv{+f|`VPEwmi)!z=btDI<=8_gO!7;DC` zS)%9J7l_PZ-)`#tNieVY{0u66@p>z`wkHcHwk6i3aqHNKrU1MtEnR}W9>ZmRcP6KP zcgUpfRi-*+Mky6B51G5XgEX>-p}8+;PmO(3>Dd;?W6h8mQBwqW*N#+=AUEHyaE&bQ zPZrl`iKn+~FUq~C*F_77?sv6!wVB-sa?|E_w|0&oxzv91Dd(`eD08P*geSYQE$-c1 zWAi9r0Dbf5woRXfRH7WJe*Ldj*~3?gNOg{tlvO8s-gbt_-s|=DBn+FAH%EJwX6WFW zp;Y<)IacMzr-^WBktKuw0Ot~eT+GmE6RAy@E+Cdq6N7mCW2FJ!t=Y!c#MfHCrl1xW z*!0flD}QG8gl|NjznzHSxfTmfQrM~dSx6K2-n1 zLD0rWT9L9sVX5i6HR=Koo~*<*#w)3w3I(O?}=S0Lp0A(_8wZ3yp_z z@|yCRyT6Y+2KClO>X6xJNqYx6*`dsC;%Wf29tF+Fnmct$N+6H7D;ft>qby^)6}{+` zgiGM0t#Ek{s{Qy(N*nW~NFVV-0*7w(q3qzW#p9{s&5Nzt?++HC(n4EnRcI&qqT5V~ zk5Z{-{_4_jwCUa9uexlOVy14hwxhi(rs{4GBJbFJuDXUC7wO^nC)oVXP5>_o(e(Sr zi6Upz7aJp#6{;z+mf!vw)lT1o1NrRx<3Zz1|4Q?7=G&YWuFhLetJn9tA#L47(wG*w z>KxYA(}vBa+(RFs?A>2OahFaPdA_mri2q&s#)F*t`0Jhk@dGIE$2ba?ca80%pn+Ea_wcQrE85`Yvsz^?(J3rjr?WwV0em>`^?;;GP^CAt~n;56zG&1I($oMRQufn z@WZXMLX~&G{J1=!R563Khyub}$Y$SLTXb*-I!J5*PmtCOuVFD+O6d()29S9HlwSOo6`L0V%+X=rRm?k zo&@!9U7o1^=}2TAppb`m!*$K8QM0>lF5&@fJGSqPo_LNRwH)IcC?be2vZRxhNp} zKG*-gr&aRse?-HqF}n081EmD(r1S_h^*Oj0gr6j9%&aQ9|Wa7)}<`&or z*A`d{ulgGzp)(z`y2H%fAgh302k1F+1z%rR7~^}<$0==I&WUS&>lrAp(dJxf+EwSc zP50hHxNEa3knbKqK@`?TRoJzCVOZZt)O>m%s_#8#`Q}_A(uYso8aA;^ISZ{Bh%&5` zsraVD$^ZK#6!qyYILJ+#!QJVC&4Tp?sNt+{Q=lFrfk|4+ec{OoA?WRC%02RKWF5@f z8fd+(-b1GZbZ8|(D^ztkqMENkp73E*KLf!&tB<0z{?8(yb+!IlDR!U9wPzV64|6wAnt$PBXeilHT1*}f_l0sx~@o1`e@+hnR zyTe6b{&4gh2k&)TanyRm&{yx57T&hodgQDJ?;E`j-Kx1>f9y?>)`093xHpo*Ttum@ zODDJR?#y8=pg_FH)`C+y&LJ>c6_S6+xu{)yK8k&GM`}+kdAof@>HVK1Z`W_o3bdx< z%+}1LJt=^_l1(*Voj_&JUI!ttkIhUKFehdDDQnUvRB+6HWs`}D_s+JeK0HT+s?b`} z1+>}}uYKsOg}eRf=)YngZZm4TK#UEVT!GEb+t=xD8oJaRocU-*%kNDe3xB#Ffr;fb z;=dC`NOH5vw~GKZz-PXU(ne0Bv(tGRVxqnq|JD3 zzc+&@8h|(fX)2e+bEPq{lIPQ~ zqq=X8p!)BQpx}b-kxQOtH%DQbHBlVTDG?YiT)>=&`{KHvOD`a^clK zC0odP?TXFfKn~?|r)SQ<8S zf#65Zr^>f4K(Uz1DN>Q!2)s!aC3jzA6`k@gk+aVWXlL4o);;)dsz*)iD685EcvUc( zUD{RsV|-#IlEjW zrPrcHdL1R9RyrRO31*?2TLE=D{8mx8+w&VDixnv8XU)Iza}lcSNl6|q@NM6K6~)9+ zpPq#T3GOa%mi%7(&9$JRfkgMi*2inWZw}<+L0lad&vityMcI42M@8peCELjIdR4uB z4%VbV-XAx&;pqP4u64v^ee(`|06zGt&D;{Lb{hH|Or)yUFGFD8cnU2aNYOeQF&+Q7 z`_gfmx0DCt0bN^oTy%5?D#qW56UWgMTX%zcQ-5o4S3;@;`SdU)qbGdo&_B2f9i<_Y z#oKjxN2GnLEovtlc&h<)x#c6iuH;{IuGKL20!aH^@fG|*-hh>qxkjY*d7D!EKTMw7 zg$SH$mF`uET6+Wq<|Nf1+h!cCdjMcQb0+{D+MaRrnbKN3XvfXD=@G7}q41A^)dHYLF{Iph zd@O6+4DfnuDF!J&Yanw+ysJk~n?pH2T!^4ZN3HCjp)x}ui*Ahdn$ zfxtA}j0)n@_u!a-HPGmLW1x4N;N1d&zE?Lmxd7iCJuj6@eLQHFG5Qzk{(tAA+TU!d z{`52|dGI!hlmpaxUVKf^)RTh-K&Rb81%J9pc)T5|(1}&?{7qDP?{#*xIyc) zul^sjy|b-wb*58D1(E4i`mopLcUg1y#Fk7CyN=oaq zLWIf&pt@R)-He8nT9voUvxvef&%iE0nE_5~^@;&YX6Tk3-5Rep)$=hpD763qd6S=| z>@lB_H>-jI>jqN*K3EGWbFxbd3!wmY2Kn^u7EoIEc`&zcw1b)K6c?&O%?6n3qu~^| z15ja|bKiJe{0rA24rTdhtMa>3(LrvQh#)Uob$@e&6Dh3V{@CI#Wg<3(y8vCf72>u0 z`1C86M(W|D0k{gdbTAiGk&*I>6=m-H9d*C(5)_x2N44J`O=XYYNP%Vjow+bgz4>9O zsplVYxA5kcw`fDO!9mf$%I!t{H^)M$7-t2S3=!et?I>EC2jv2pks%dB(UhR$5^QV< zv2nH%YvZ)}CbjfA>MHUIRTy0Hcj{6yaaUrD*m|@lacqElPeVyvM0Yw`3F2h)#xr) z_0>r-NK0C#*%ht+$vJ4#yUx1OkCRkAT}(NiiK|pEncC)wQs&^FsQaP+mZtF9*?UmK zl3f7i10Y0T@xz!no5mSUlcE+1DWUE{DRtTBZqaT32R62Mkqy#~YA~jMCHl2PBS*{$ z!#VraWu>{)?h7fs-*i|3LR3FzS1SATFP6W!FPDeKwbgyNEDVyA{JlG%PTk*n#b(?< zuVyN-1^1oOX9cAX{TYH33aP9apz7O7c?#O!OzL|6KPY4PH)!#?8#MJP)PRC3+H}pp z;z59a-jR<|mou(Hp`8u^>axCp6-t#BlxTG!y7ToxwYQNF%qM~m4Huym11Ma|0Iw_# zu6>~k?ZhmoqMyU1r8MQ*TY8V_?_BS089@8goxnH+@X|!@-m`9i*AvkI&ja#)<;(Nl z;6S>x2zk1$rS#F$tc(dCinLMRq9*@BSdKPa8)0Lc*8INN6xb>OT~h;*&0Wa1;8OB0 zJR9cgqDCgmKFyRGk+R*l=w9_S0_Q%14YsPIn2$Ij+gfwsFCwsLsBIpDa^~$`%z!R) zMU&DDs5i0Yt!N|(40N1T^28KT``x}W^+~=Mt5YoGmd~Ibe>)F(=D$$wPlsD;kiHf| zPjef&1gtiGDmd&BDmdzYXp`EDmR|D_G+5Z&nTau=qkW__UAi@O{;YaNOMa`Fw3`t+ zJF@Y2K8;WmCUf94(f#m$Q^TquRQ}Bc=u3_We7>I6@?A_{*Wu>()Pj}N|Kj6C_Mjh| zd-_o&t_v-H;z6ndphs!|Bz&Y)voQdh8bGh4v@p!~YhdF4j`AkF!@&X8x;L&8zGcJZ zzT;pn$I74pMX)>G9sSPZ#($PKp^j63tEI4)1hmXQ{4vVh;bW@);AE=%X@5MUcD_6d zUulCEiLQUS64?juk$=HNTKB(uP#Si;?0TnO7Anh$oPFP>E@xdXQhP3Jjt=epy%qJP zBd5L_Mb-^KhQ%-nE}8(IG?K#T%^Ey zceOtqPa_vXiO-~)`$qiC+{{?8P`USEPK0r_%ghbZbP5t+_+<#j& zpi4Fq4Q5kdrX&ErZtmu7cmdRG9{SQ3`O3SVk)=VRTzX!$+9U@bX!)CbhP_yuSM-e9zF6~9Zm4g8A<5B)~IHKdB z!LRKFGd*rfx9ipWN#C!csdJxNYj=O&6kB(H=hDjETDp_39uMfejC@XfgucEu?;mvx zTK!T|Ax!dv=c3}=2b4bMTT1Ew2P~nr9eioFis^0jfG)Q=n=-={W37hYZx+GTdqNUc zenOky*l{8m0QP=wQTpI}C@Gg)IkuY?jQY+QRDAO%=sms*qMb3_dOS<8DsrvsB;<=0 zLUYMJ>>)($cgPrkwth0Ka7`gqyz+lk@y>Z*lKJ+cG5`Tg3y*t<@(+FlCf>QIOW?Qs zOGnYFTV5pJ{1I}V8ay(`{7Aj8J6fc4S!=C*`UWa_{(3!(1VU^XM-Yr^O`RE^)^yb0 zk|}D&$I38k@0uBFZ418etbspJuVep7#h?G#s`%|VVTIG|%5scVydgE%s(W$pQ2Vbr zJub;7`ki{I=&}Dp@iez;7w>2-{NF1Stmq@;SZZtu-uS2e;c{v$obY$-rbnK4{*EtE z{-k$k?VAvepdCx?Oliifo$HtMr8C&ehfLkKo*xg%gU9>Q_4oV^n&s~OCiT1qZjC@H zt-JqDs`}szTuY@7VBpjNOR4A8r;5xGQ?YgNakM@gVBTM*yamx?AOK-LxOgaX*}H)@Fj<5-MOTFy#B0lL zVTrHYQb2d@e|ONFTa$OH{_(zy2Xyycs%y%rsAmGDlP%=7i}Z0nQs&O@Qu;^)(&eu+ z0lu5EJ2vguPFX2#({7RZmvs6~vm&+U!qjykf>usL;8}OOeWZFt>x)H$|zyEeT;3?4L@7vbR@2DP{PGwJD z0nPkx2(n7Gd6|~d@SX&VOX@(REP5mGCwE2t_Up;Fuo29ed3lRUsrz|i(VaY?f~YrC2$N~zG^Oj0XXjMdTL)n_&lrS@1zeNVlZs%Gs)6*GpKhaB{x&f zelJ*MPhT&pKRL?2HUyFSKZaB2?t3YJ;TQ;bQ{Y#x-c&x(UdJoJyaLy+K>W{d6y5Dj zsli9ed&>9%|Kf2JS~5n2Rt`YvSZMH->8KLuqPuIq%bRemg>zFI(&XI>!h*0{AW-{I z9ul|i?n~+G$m7&z#T-RoVLu8k>qm889zrPt=fl_jxmEuowD!TjqWMmAy@QjWL~ny-(seZ$P36rknp`?Sa${v(>6 z$vV& z(@+WoDy>h>j|ClmcXN47Cq7ouN!~Mhf0sRtDsZE}7n!5Kv1+E?jjC!pL;KE<1MoPU z*Nq@YWGkEk(`^~neGW?Vj&e4LoCp3BT31A+&s+(5;;{(a*ck&zQ8b6|hNXD^w+jD$ z#?8D8HxTL%RCKpZ^K7DDFcxk^_~F-fM*v=iy(g4AQ4+=t((ZMTJIDUQX`!l)b%ayb zF^+X9ehl^5IVVnFh*^7V%}@y}5M>jo;pd5PZJv!lx*5nsIZY&Y+3Gv$Is3E?{@A7f zU2aq1Z2&_+BbV%XU>w(>9OJ%VfXQ|gyxN5pxK^la7yzGtKNM!a=b_!d27#co4c5fw zP6AF{_D9KTS)4)*X3N^T1y2Bfj{4H5;)&bf`wfG6JrCx!?M0T>eSZ{{J;QmwO@KL= zIswp9`u~PCk66`T9YdAxBRG;ZQ?-f=YM$IW%7#Y7uj=oQL>k*j00Qir46e|CIm^pd zP3)8SV}z?|!QGL>%vWm5w(4R*HAiZg1O9HtDj6Tp$&*t?d80q20JcC$zqOy9PyXs& zIM*)8%Bnc;L21Uu$0)z^ANZdC)QrqjwdZ=~%nJ%WmMe}>k6alUP~XDfvUWH0ED^^f#vs8%66XsAo%=Ne6h(L7NfcS@Osa-+k2kLo5dXKr3l3PqAKb#DFWW==*Gm>o(rs1Q(x8L`W~{iQMz?_?loP?sC2je- zxCX;z2w5UkbM~N~hy90&e>jOEfdaT0KoS}Gj;sLg5|b2WT_1U9ERkR??EgmYyGX*{ zktE9sLRe=1FV9ueUJDv7VWVd10hVvkIB4M0t@=N16Lr6!VqXw~8qb$O-Wc0g+x6u*KtkYexooDGYC$O zM|3rwUU&Z4gKmb|2fT~g8h47+-dkmB+$~(*EjoRh1axQHda_osX%5=@GRrsXZz59J zFD9B-OO{bY2?v(%53PMPrS|^F3a)wqjSIfVgT-dC#J|{Fkc4utNvxSOLxU2A4ps6& zN`fVlb9IrQE|rt0uNzgpG{vg_K7tBPXkG#BaVvkpM_NFuZ~d<^6(V{yGCRULOyPGnbe-czFhLH9Zt1Nb{D?2 z+f)9ScPUW09fbqAHviM}VeOn5s{(lan+7Qf<}QZG#gZ&f1ncdSMPp(S9VNw_l=d$z13I!<2^NxAkY(zY??gTKyAKid)2VXa9{4I~dDE*!N=6l> zWR{7PoK;}b)vTW*r+pE5Q|n|-xd-#If~g`>RfHDDy+ybT_gq~>k*Y4Rd_lXc&w_@= zrY7FRNiebJQpvM7!FqNCCiWAG|4bJRzwaP#i>J=wLKw|*itoGA@-03UH}({QAkRWX zI7_{;S~}l!sJMtq9=gNwFJ3Lu2F}>Z9|@2{HmzX+rWiDwN?E?=Yz@A+w+OBn0u6qw z%!v=J>WlBYz(cMQx35;wUltjALFemO=BjvtHU zBI7@Ag-y9l1G?O&NvRx&@__Ib{6h7=LE~FF+2$aMc{-*~d=;(jj$GK&0VD??(CRHK zR0dyY{+!mRI0uOu1uFO%Wq!xzGbrJR8kJ0#L7l-~O5M=Z!zKMi<>L=Zpdos*74}KT z8nS-IUR3wXZjC-ew;Ca}4VHDn$a8)KscZ+~*!>zKbQN%MJ5jcDWRCsH=3~KRD&T1N z9&=EaU@0Z%0gz$&fEitcDteN?44U`4?I~2Hn|3vkxC9cu%(?rb;!6j!KH{}v!_=u2ru ziXttNJHQ2(!VkY>6a^NJCa!f6E`}doXAEe1YZJ)s%bG zqm;A%v#6)BbiDx1)+NU_HTpIW=)Brs>;aU-gjBoJ+2qT^Ll9R=Z_nsNqyPu+IEkJ5Y0 zqwtafEFkjE*k^5nwhiYhs7adFC5klydpujhxln{*@lI|cy%HQX2^zFp`*Q!S1MQ@F zT@j3@E=2@=ZPwI*3y~miGNk`aeA&twJQe%OM-8a|Ui{rDmT&C{l*a7`jjsqrVX~mT zqjDJAlpHcKg`+j69t{Xkh0K4YLkP+tl(_ij=+ z5J}RVCDI1{j&-WQ_xWf&Ys(tEs8N{uYri^}YA2(3$$*70!S98oZA^1(43NORVJg+1 zoM6?@c?v;~-)~c#-F35A2VPXBEB|9N{WMwZCW3U&aA^-{?MRnfvOW1`>`wJR?WN)q z+#@tWIxT?4%aZz$#QyPgsSueve}!UL4^aB3Z=gJxG}~6*ga*(Rf#KidojDgK_{+F6 z8#TdZy{w2`wr{$Gv0ra=JQBZcdGg3L~5A7D>TI+6sm?1vrj&)Xem|A-_I)j;Vj`tzI3<_aRKP$n#6k* zesepjo!t;1Hq!9IY#or-9tvU9tu=j$K@uBA( z59Z3U#KnFxCjLx$$NrBpcltnha;w|#PPeTq8$gd+Z)t*$h93cdE=9V`waELNVEg$L zqthFl-(>(3m|3V8X3465QfT#FXrYKwvOPcN3UphP>Ly?^WiXdMbFQDk=G7cr4?-?i zkCXMq8PJ*YGQKeIbG%Z;0JLzt&GOH$5otrGZcW=+rm3yG<{x0r=`k)nH-BO9kx}QI zmyJaJ^x?l#)(-E&wEj5+H2?;JAAKmj*)VTM3M|L2s{9&cTn0)Pb`THAgc}%P3#~y$L$Otk?j{ z>3h)P0O~WYL)l3*cww_G^9^0VEE{80Jo&KYpL3x|8~#SD{IP?wzbYm!HCUUQa~QSA3{VO;jDRMdHR*jyLrrNWkZ;~jRPo+L^=LsW3Y1623x-iV7h z6d;W#?h=^kV+gt4Mi$Y!Y^tBOAAT@^9<$}JPJ#L3sq~H;sQ#M+ovZ@A^|YEU`JUFk z-Q?AT$Ga!bPnmmsjD|V)QR?vTkgd?lnLwR@U$w&&4WKtebX6g4CVH&@6^sQr>%ad+ z`l(|AaI{vSO;XIl>d=mI&e6~!Cfk8?>mEnnUYK?fL9kC|P)#9Ww=X!Xg8J>ZM ztz*j1FSRk&+F^n9LiPwDt*h##JFURt^C2n!+zxvyA(xaLtRf9L08m6y!)lQ>cmes5 zj>DRs)IMSU<_KRfe=Bv+ujr=sF*>QuqGXtHLzO+L7P;m1Gxmj9eIm^1$a|FnfWk_C zS6aDTO8pySExS1+#)lx3`H%ty(9U0Fr4+3Y8Qtev={;wQl)N?M1!#Ma?I1jylWp6v zWn}xhAyl(?64k97kG~OsRDo1B2z|118Uq~9oq4m z4Iqwys{QvI6H=c6vp%Pd_O|MN-c2MIlv5gd#b-@~wPlA7DQm}%(C&2_L7w_%X?_C~f;$lza38l(p9@!kbrNsN8-OFo3=h+M_OX2{!-jkU&wLYTDI^&PCx7 z=G)R|7|T3#0|TirgOT}WoQ*uteJORwYgVY_B|<-T1mLwSFeC{%&TMX%Pn6@(#7E^< zkE)JW{F#I2BtXDK%szD)2@l>GTryr%JoXsO?-#)Q{$2ZRvn{xCVEIT?cRLA@y4NGP zryBX^XCcygJl3JVY*Weo;*)zUL4AM)!rNsfZaN*MeJ4`oM`v2~GxrhU@~$Xc!afSS z8k@t>G?;5Z*Ad|yF^)E+0D3T|8j;cG56T(y0p$$)S|sNcgT4XQj77LU&qDf{@D&e6 zwYDM=s_H2Vq=Xxwy;k(K5KIS?G@^=GQ&l}zxfeO7bV&xu{&${J90QeGN&}mlZc1o$ z7%Fc+NIS_{Wld4n@@ADbDy}$J7N?2duW>*w8M~%4h5kA*K#d z?kfeUJAAA_x16`yX&1oKAF)24PyS?qWy5uSCjJ1#T75T2NsQ?DS2`Kcmt}C?huCUPTM5&*j0h9b!=*9gt6&`yx$Z#)GvxdQ%winiZ z5{|=KaCfbC5Z&SqX(Q^(q+_Jeu-pqCK6{uCwmp0_Qe%y#sJZ+6)_`o!CMe$aNHDOL@q`k!xt zFYi!kg10MzsHtdfs5NE=Sgn0Pi}ZGzi{=DR0Nh_ibov?q`v&vHt-5coq}q>evo#I| z8|kA|*JI|)+PUh4rT=!^0nGgQ+H8^s+vi&51?Qb1QqlLi6TPh9y8g80-)N*VXEb%c zOI=hRDQ zFvsapUJI@v!{kLCzqhc2vH%#_W8X)w@*fevRSpfimsPiFq(HM1@|6y->Q{{yfpP?g zHRM^5pjRN^4cCE|j+6siyOpu<_O-bL3)`Kg79R%ip~@Vr4f@6P=p*Q(&A=7KKThwG zFTIXUEgIikQaz2k>ae83QD4R%VXgY?FV? +Jge;-lsrE#I|u^#D$Af@TdGXeI5K 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 Date: Sun, 14 Jul 2024 12:45:49 +0530 Subject: [PATCH 2/3] feat: Add CowBull game to GameZone The CowBull game has been added to the GameZone repository. This commit includes the necessary files and updates to the README.md file. --- README.md | 596 +++++++++++++++++++++++++++--------------------------- 1 file changed, 295 insertions(+), 301 deletions(-) diff --git a/README.md b/README.md index 5e09bc80cd..4fb5d7f669 100644 --- a/README.md +++ b/README.md @@ -107,93 +107,92 @@ This repository also provides one such platforms where contributers come over an -| Game | Game | Game | Game | Game | - - -| [Master Typing](https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing) | [Treasure Hunt](https://github.com/Antiquely3059/GameZone/tree/main/Games/Treasure%20Hunt) | [Virtual Pet](https://github.com/Antiquely3059/GameZone/tree/main/Games/Virtual_Pet) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | | - -| [Tilting Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Tilting_Maze) | [Simon Game Challenge](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Game_Challenge) | [Snake Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Game) | [Dino Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dino_Runner_Game) | -| [Whack a Mole](https://github.com/kunjgit/GameZone/tree/main/Games/Whack_a_Mole) | [Doraemon Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doraemon_Jump) | [Black Jack](https://github.com/kunjgit/GameZone/tree/main/Games/Black_Jack) | [Memory Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Game) | [Word Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Guessing_Game) -| [Ludo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_Game) | [Piano Game](https://github.com/kunjgit/GameZone/tree/main/Games/Piano) | [Atari Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Atari_Breakout) | [Dinosaur Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dinosaur_Game) | [Guess The Colour by RGB Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Guessing_Game) | -| [Guess The Number](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Number) | [Race car game](https://github.com/kunjgit/GameZone/tree/main/Games/race_car) | [Aim Training](https://github.com/DP-NOTHING/GameZone/tree/contri/Games/Aim_Training) | [Alien Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Alien_Shooters) | [Fruit Ninja](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Ninja) | -| [Doodle Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Jump) | [Alphabet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet) | [Candy Crush](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush) | [Word Association Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Association_Game) | [Tic Tac Toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe) | -| [Flappy Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flappy_Bird) | [Trivia It](https://hithub.com/kunjgit/GameZone/tree/main/Games/Trivia_It) | [Minesweeper](https://github.com/kunjgit/GameZone/tree/main/Games/Minesweeper) | [Dice ShowDown Game](https://github.com/Himanshu07-debug/GameZone/tree/main/Games/Dice_Showdown_Game) | [Pac Man Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pac_Man_Game) | -| [Brick Breaker Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick_Breaker) | [Magic Square Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_Square) | [Fight Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fight_Game) | [Lighthouse Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lighthouse) | [Lights Out Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lights_Out) | -| [Word Scramble Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Scramble_Game) | [Tetris](https://github.com/kunjgit/GameZone/tree/main/Games/Tetris) | [Interactive Quizzing Application](https://github.com/kunjgit/GameZone/tree/main/Games/Interactive_Quizzing) | [Planet Defense Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Defense) | [Rabbit Rush Game](https://github.com/kunjgit/GameZone/tree/main/Games/Rabbit_Rush) | -| [Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Wordle) | [Roll Race Game](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_Race) | [Menja Game](https://github.com/kunjgit/GameZone/tree/main/Games/Menja) | [Typing Speed Test Game](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test_Game) | [Tile Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tile_Game) | -| [Stick Hero Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stick_Hero_Game) | [Starwars Character Game](https://github.com/kunjgit/GameZone/tree/main/Games/Starwars_Character_Game) | [Traffic Run](https://github.com/kunjgit/GameZone/tree/main/Games/Traffic_Run) | [Love Result Predictor](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Result_Predictor) | [Tower Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Defense) | -[Menja_block_breaker](https://github.com/kunjgit/GameZone/tree/main/Games/Menja_block_breaker) | -| [Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bird_game) | [Bubble Blast Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Blast_Game) | [Emoji Charades](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Charades) | [Drum And Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Drum_Kit_Game) | [Rock Paper Scissors](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors) | -| [Frogger](https://github.com/kunjgit/GameZone/tree/main/Games/Frogger) | [!morethan5 ](https://github.com/kunjgit/GameZone/tree/main/Games/Not_morethan5) | [Unruly Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Unruly_Tower) | [Maze Game](https://github.com/kunjgit/GameZone/tree/main/Games/MazeGame) | [Connect4](https://github.com/kunjgit/GameZone/tree/main/Games/Connect4) | -| [Spelling_Bee](https://github.com/kunjgit/GameZone/tree/main/Games/Spelling_Bee) | [2048](https://github.com/kunjgit/GameZone/tree/main/Games/2048) | [Spin the Wheel](https://github.com/kunjgit/GameZone/tree/main/Games/Spin_the_wheel) | [Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Breakout) | [Tower Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Blocks) | -| [Platform Game](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_Game) | [Red Light Green Light](https://github.com/kunjgit/GameZone/tree/main/Games/Red_Light_Green_Light) | [Squash your Enemy](https://github.com/kunjgit/GameZone/tree/main/Games/Squashing_your_Enemy) | [Avax Gods](https://github.com/kunjgit/GameZone/tree/main/Games/Avax_gods) | [Flip Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Card_Game) | -| [Bingo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bingo_Game) | [Fifteen Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fifteen_Puzzle_Game) | [Stack_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stack_Game) | [Block.io_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Block.io) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | -| [Touch_The_Ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Touch_The_Ball) | [Sudoku](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku) | [Mini Golf](https://github.com/kunjgit/GameZone/tree/main/Games/Mini_Golf) | [Rubik's solver](https://github.com/kunjgit/GameZone/tree/main/Games/Rubik's_solver) | [Shoot_The_Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_The_Balloon) | -| [Dont_Die_To_Ghosts](https://github.com/kunjgit/GameZone/tree/main/Games/Dont_Die_To_Ghosts) | [SciFi Alchemy](https://github.com/kunjgit/GameZone/tree/main/Games/SciFi_Alchemy) | [Packabunchas](https://github.com/kunjgit/GameZone/tree/main/Games/Packabunchas) | [Cast and Catch](https://github.com/Sheetal-05/GameZone/tree/main/Games/Cast_and_Catch) | [Track Not Found](https://github.com/kunjgit/GameZone/tree/main/Games/Track_Not_Found) | -| [Love Calculator Game](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Calci) | [Planet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Game) | [Snake Ladder](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Ladder) | [Among Us Game](https://github.com/kunjgit/GameZone/tree/main/Games/Among_Us_Game) | [Pokedex Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokedex) | -| [Pacific Air Battle](https://github.com/kunjgit/GameZone/tree/main/Games/Pacific_Air_Battle) | [Dante](https://github.com/kunjgit/GameZone/tree/main/Games/Dante) | [Ping Pong Multiplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Multiplayer) | [Sonic The Hedgehog](https://github.com/kunjgit/GameZone/tree/main/Games/Sonic_The_Hedgehog) | [World Of Emojis](https://github.com/kunjgit/GameZone/tree/main/Games/World_Of_Emojis) | -| [Ball Fall Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Fall_Game) | [Pinball](https://github.com/kunjgit/GameZone/tree/main/Games/Pinball) | [Duck_Hunting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Duck_Hunting_Game) | [Color Turner](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Turner) | [Catch the Bunny](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_the_Bunny) | -| [Catch me game](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_me_game) | [Blank Detective](https://github.com/kunjgit/GameZone/tree/main/Games/Blanks_Detective) | [Falling Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Blocks) | [Movie Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Movie_Guessing_Game) | [Wildcard Bonanza](https://github.com/kunjgit/GameZone/tree/main/Games/Wildcard_Bonanza) | -| [The Last Spartan](https://github.com/kunjgit/GameZone/tree/main/Games/The_Last_Spartan) | [Space Exploration](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Exploration) | [Bow Arrow Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_Arrow) | [I Want To Google The Game](https://github.com/kunjgit/GameZone/tree/main/Games/I_Want_To_Google_The_Game) | [Space Gun](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Gun) | -| [Space Huggers](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Huggers) | [Spaceship Escort](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceship_Escort) | [Space Defence](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Defence) | [Glitch Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Glitch_Buster) | [3D Box Game](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Box_Game) | -| [Escape](https://github.com/kunjgit/GameZone/tree/main/Games/Escape) | [Retro Dungeon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Retro_Dungeon_Puzzle) | [Immunity Collapse](https://github.com/kunjgit/GameZone/tree/main/Games/Immunity_Collapse) | [Hunt Your Card](https://github.com/kunjgit/GameZone/tree/main/Games/Hunt_Your_Card) | [Tenacity](https://github.com/kunjgit/GameZone/tree/main/Games/Tenacity) | -| [Emoji Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Puzzle_Game) | [Back To Space](https://github.com/kunjgit/GameZone/tree/main/Games/Back_To_Space) | [Snooze](https://github.com/kunjgit/GameZone/tree/main/Games/Snooze) | [Galaxy Rider](https://github.com/kunjgit/GameZone/tree/main/Games/Galaxy_Rider) | [Squared Lines](https://github.com/kunjgit/GameZone/tree/main/Games/Squared_Lines) | -| [Space War](https://github.com/kunjgit/GameZone/tree/main/Games/Space_War) | [Sciara of Colors](https://github.com/kunjgit/GameZone/tree/main/Games/Sciara_Of_Colors) | [JunoJs](https://github.com/kunjgit/GameZone/tree/main/Games/JunoJs) | [Fall Down](https://github.com/kunjgit/GameZone/tree/main/Games/Fall_Down) | [Cat Goric](https://github.com/kunjgit/GameZone/tree/main/Games/Cat_Goric) | -| [Cable Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Cable_Maze) | [Spaceducts](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceducts) | [Zurbo](https://github.com/kunjgit/GameZone/tree/main/Games/Zurbo) | [Blast Zone](https://github.com/kunjgit/GameZone/tree/main/Games/BlastZone) | [Free Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Free_Bird) | -| [Maximise Boxes](https://github.com/kunjgit/GameZone/tree/main/Games/MaximiseBoxes) | [Slide Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Slide_Puzzle) | [Diamond Run](https://github.com/kunjgit/GameZone/tree/main/Games/Diamond_Run) | [Everyones Sky](https://github.com/kunjgit/GameZone/tree/main/Games/Everyones_Sky) | [Line Of Fire](https://github.com/kunjgit/GameZone/tree/main/Games/Line_Of_Fire) | -| [1024 Moves](https://github.com/kunjgit/GameZone/tree/main/Games/1024_Moves) | [Save The Forest](https://github.com/kunjgit/GameZone/tree/main/Games/Save_The_Forest) | [Dragon World Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_World_Game) | [DuckHunt](https://github.com/kunjgit/GameZone/tree/main/Games/DuckHunt) | [Plankman](https://github.com/kunjgit/GameZone/tree/main/Games/Plankman) | -| [Hold The Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Hold_The_Cloud) | [Labyrinth](https://github.com/kunjgit/GameZone/tree/main/Games/Labyrinth) | [RIP](https://github.com/kunjgit/GameZone/tree/main/Games/RIP) | [Risky Nav](https://github.com/kunjgit/GameZone/tree/main/Games/Risky_Nav) | [Pixels From Space](https://github.com/kunjgit/GameZone/tree/main/Games/Pixels_From_Space) | -| [Poker_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Poker_Dice) | [Unlock_The_Lock](https://github.com/kunjgit/GameZone/tree/main/Games/Unlock_The_Lock) | [Gnomedom](https://github.com/kunjgit/GameZone/tree/main/Games/Gnomedom) | [Lost In The Maze 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Lost_In_The_Maze_3D) | [PONG BALL](https://github.com/kunjgit/GameZone/tree/main/Games/Pong_Ball) | -| [Projectile Motion Game](https://github.com/kunjgit/GameZone/tree/main/Games/Projectile_Motion_Game) | [Swift](https://github.com/kunjgit/GameZone/tree/main/Games/Swift) | [Spacepi](https://github.com/kunjgit/GameZone/tree/main/Games/Spacepi) | [Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Destroyer) | [Terror_Seventy](https://github.com/kunjgit/GameZone/tree/main/Games/Terror_Seventy) | -| [Humming](https://github.com/kunjgit/GameZone/tree/main/Games/Humming) | [Word Search Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Word_search_puzzle) | [Ballarena](https://github.com/kunjgit/GameZone/tree/main/Games/Ballarena) | [Beyonder](https://github.com/kunjgit/GameZone/tree/main/Games/Beyonder) | [Shpere](https://github.com/kunjgit/GameZone/tree/main/Games/Shpere) | -| [Short Circuit](https://github.com/kunjgit/GameZone/tree/main/Games/Short_Circuit) | [Johnny Smiter](https://github.com/kunjgit/GameZone/tree/main/Games/Johnny_Smiter) | [Rectangular](https://github.com/kunjgit/GameZone/tree/main/Games/Rectangular) | [Canon Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Canon_Defense) | [Trashem](https://github.com/kunjgit/GameZone/tree/main/Games/Trashem) | -| [Chess](https://github.com/SoarinSkySagar/GameZone-GSSoC23/tree/main/Games/CHESS) | [Get The Pigeon](https://github.com/kunjgit/GameZone/tree/main/Games/Get_The_Pigeon) | [Uxu](https://github.com/kunjgit/GameZone/tree/main/Games/Uxu) | [Soul Jumper](https://github.com/kunjgit/GameZone/tree/main/Games/Soul_Jumper) | [Infernal Throne](https://github.com/kunjgit/GameZone/tree/main/Games/Infernal_Throne) | -| [Dead Again](https://github.com/kunjgit/GameZone/tree/main/Games/Dead_Again) | [Norman The Necromancer](https://github.com/kunjgit/GameZone/tree/main/Games/Norman_The_Necromancer) | [Shape Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Shape_Blocks) | [Goal_Rush](https://github.com/kunjgit/GameZone/tree/main/Games/Goal_Rush) | [Charon Jr](https://github.com/kunjgit/GameZone/tree/main/Games/Charon_Jr) | -| [Color Shifter](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Shifter) | [Oh, flip](https://github.com/kunjgit/GameZone/tree/main/Games/oh_flip) | [Snake Feeder Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Feeder_Game) | [LOSSST](https://github.com/kunjgit/GameZone/tree/main/Games/LOSSST) | [HangMan](https://github.com/kunjgit/GameZone/tree/main/Games/HangMan) | -| [Bad_Luck_Brian](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Luck_Brian) | [Bad_Depot](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Depot) | [Achluophobia](https://github.com/kunjgit/GameZone/tree/main/Games/Achluophobia) | [Timber_Terry](https://github.com/kunjgit/GameZone/tree/main/Games/Timber_Terry) | [Earth_Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Destroyer) | -| [Lonely Phantom](https://github.com/kunjgit/GameZone/tree/main/Games/Lonely_Phantom) | [Ghost Surf](https://github.com/kunjgit/GameZone/tree/main/Games/Ghost_Surf) | [Sucker](https://github.com/kunjgit/GameZone/tree/main/Games/Sucker) | [Sorades](https://github.com/kunjgit/GameZone/tree/main/Games/Sorades) | [Thirteen](https://github.com/kunjgit/GameZone/tree/main/Games/Thirteen) | -| [The Raising Fighting Spirits](https://github.com/kunjgit/GameZone/tree/main/Games/The_Raising_Fighting_Spirits) | [Green Mahjong](https://github.com/kunjgit/GameZone/tree/main/Games/Green_Mahjong) | [Drag And Drop Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Drag_And_Drop_Puzzle) | [Music Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Music_Guess_Game) | [Tower Of Hanoi](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Of_Hanoi) | -| [Mastermind_Mania](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind_Mania) | [Ludo_4_Player](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_4_Player) | [AirBalloon](https://github.com/kunjgit/GameZone/tree/main/Games/AirBalloon) | [Space Invaders](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Invaders) | [Cut the Rope](https://github.com/kunjgit/GameZone/tree/main/Games/Cut_the_rope) | -| [Caesar&Cipher](https://github.com/kunjgit/GameZone/tree/main/Games/Caesar_Cipher) | [Monster_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Monster_Maker) | [Stolen Sword](https://github.com/kunjgit/GameZone/tree/main/Games/Stolen_Sword) | [Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind) | [Highway 404](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_404) | -| [BullseyeGame](https://github.com/kunjgit/GameZone/tree/main/Games/BullseyeGame) | [Crossword Game](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Game) | [Guess the Correct Logo](https://github.com/shruti-2412/GameZone/tree/main/Games/Guess_The_Correct_Logo) | [Painting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Painting_Game) | [Platform_game_engine](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_game_engine) | -| [Doppelkopf](https://github.com/kunjgit/GameZone/tree/main/Games/Doppelkopf) | [quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/quiz_game) | [Island Survival](https://github.com/kunjgit/GameZone/tree/main/Games/Island_Survival) | [Linkup Game](https://github.com/kunjgit/GameZone/tree/main/Games/linkup) | [Trivia_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Trivia_Card) | -| [Insect Catch Game](https://github.com/kunjgit/GameZone/tree/main/Games/Insect_Catch_Game) | [Carnival_game](https://github.com/kunjgit/GameZone/tree/main/Games/Carnival_game) | [Make Me Laugh](https://github.com/kunjgit/GameZone/tree/main/Games/Make_Me_Laugh) | [Avoider_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Avoider_Game) | [Dungeon_Crawler](https://github.com/kunjgit/GameZone/tree/main/Games/Dungeon_Crawler) | -| [snake_water_gun](https://github.com/kunjgit/GameZone/tree/main/Games/snake_water_gun) | [Run and Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Run_and_Jump) | [AI CHESS Game](https://github.com/kunjgit/GameZone/tree/main/Games/AI_CHESS_Game) | [Fruit_Catching](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching) | [Bulls eye](https://github.com/kunjgit/GameZone/tree/main/Games/Bulls_eye) | -| [Crystals_Collecter](https://github.com/kunjgit/GameZone/tree/main/Games/Crystals_Collecter) | [Dots and Boxes Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dots_and_Boxes_Game) | [Infinite Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Infinite_Runner_Game) | [Mario_Matching](https://github.com/kunjgit/GameZone/tree/main/Games/mario_matching_game) | [Hand_Cricket](https://github.com/kunjgit/GameZone/tree/main/Games/Hand_Cricket) | -| [Crossword_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Puzzle) | [Pixel_Painter](https://github.com/kunjgit/GameZone/tree/main/Games/Pixel_Painter) | [Riddle_Room](https://github.com/kunjgit/GameZone/tree/main/Games/Riddle_Room) | [ArmorAlley](https://github.com/kunjgit/GameZone/tree/main/Games/ArmorAlley) | [Color_switcher](https://github.com/kunjgit/GameZone/tree/main/Games/Color_switcher) | -| [Maze of Cables](https://github.com/VSatwika/GameZonefork/tree/Maze_of_Cables/Games/Maze_of_Cables) | [Escape Room](https://github.com/kunjgit/GameZone/tree/main/Games/Escape_room) | [Super_mario_run](https://github.com/kunjgit/GameZone/tree/main/Games/Super_mario_run) | [Doodle_Draw](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Draw) | [Arcade_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arcade_Game) | -| [Slice Storm](https://github.com/VSatwika/GameZonefork/tree/Slice_Storm/Games/Slice_Storm) | [CodePen_SImulator](https://github.com/kunjgit/GameZone/tree/main/Games/CodePen_Simulator) | [Piano_Tiles](https://github.com/kunjgit/GameZone/tree/main/Games/PianoTiles_Game) | [CareTaker](https://github.com/kunjgit/GameZone/tree/main/Games/CareTaker) | [UNO](https://github.com/kunjgit/GameZone/tree/main/Games/UNO) | -| [Remeber the color](https://github.com/kunjgit/GameZone/tree/main/Games/Remember_the_color) | [Guess The Random Shape](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Random_Shape) | [Save Doraemon](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Doraemon) | [Animal_Match_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Animal_Match_Game) | [Hextris](https://github.com/kunjgit/GameZone/tree/main/Games/Hextris) | -| [MrFakeGame](https://github.com/kunjgit/GameZone/tree/main/Games/MrFakeGame) | [Checkers](https://github.com/kunjgit/GameZone/tree/main/Games/Checkers) | [Roulette](https://github.com/kunjgit/GameZone/tree/main/Games/Roulette) | [Aero Acrobat](https://github.com/kunjgit/GameZone/tree/main/Games/Aero_Acrobat) | [Adventure_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Adventure_Game) | -| [Pumpkin_Pursuit](https://github.com/kunjgit/GameZone/tree/main/Games/Pumpkin_Pursuit) | [Corona Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Corona_Shooter) | [Pokemon Ball Finder](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Ball_Finder) | [Basketball](https://github.com/kunjgit/GameZone/tree/main/Games/Basketball) | [Wault_master](https://github.com/kunjgit/GameZone/tree/main/Games/Wault_master) | -| [Reaction TIme](https://github.com/kunjgit/GameZone/tree/main/Games/Reaction_Time) | [Flag Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flag_Guess_Game) | [Cross_The_Road](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_Road) | [Highway Race - Barrel Dodge](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_Race) | [Bit_Maze_Platformer_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Bit_Maze_Platformer_Maze) | -| [Math Game](https://github.com/kunjgit/GameZone/tree/main/Games/Math_Game) | [Space Drifter](https://github.com/kunjgit/GameZone/tree/main/Games/space_drifter) | [Observe the Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Observe%20the%20Cloud) | [Cosmic_Coin_Blaster](https://github.com/kunjgit/GameZone/tree/main/Games/Cosmic_Coin_Blaster) | [Circus Charly](https://github.com/kunjgit/GameZone/tree/main/Games/Circus_Charly) | -| [Pikachu_Volleyball](https://github.com/kunjgit/GameZone/tree/main/Games/Pikachu_Volleyball) | [Trex_Run](https://github.com/akankshachanana1/GameZone/tree/Added/Games/Trex_Run) | [Crack_The_Code](https://github.com/kunjgit/GameZone/tree/main/Games/Crack_The_Code) | [Skeleathon](https://github.com/kunjgit/GameZone/tree/main/Games/Skeleathon) | [Shadow_PokeGuess](https://github.com/kunjgit/GameZone/tree/main/Games/Shadow_PokeGuess) | -| [Brain Color Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Color_Mastermind) | [Lizard Spock Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lizard_Spock_Game) | [Angry Boars](https://github.com/kunjgit/GameZone/tree/main/Games/Angry_Boars) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet_Learning_Game) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | -| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/main/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Alphabet_Learning_Game) | -| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Death by Hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Death_by_Hamster) | -| [Tenzies](https://github.com/kunjgit/GameZone/tree/main/Games/Tenzies) | [Target_Torrent](https://github.com/kunjgit/GameZone/tree/main/Games/Target_Torrent) | [Reversi](https://github.com/kunjgit/GameZone/tree/main/Games/Reversi) | [reaction_teaser](https://github.com/kunjgit/GameZone/pull/2134/files) | [Scribble](https://github.com/kunjgit/GameZone/tree/main/Games/Scribble) | -| [Brain Burst Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Burst_Game) | [StickTheSticker](https://github.com/kunjgit/GameZone/tree/main/Games/StickTheSticker) | [Meme_Battle_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Meme_Battle_Game) | [Match_Color_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Match_Color_Game) | [Bow_And_Arrow](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_And_Arrow) | -| [Beyblade](https://github.com/kunjgit/GameZone/tree/main/Games/Beyblade) | [The labyrinth of death](https://github.com/sahaycodes/GameZone/tree/meme/Games/The_labyrinth_of_death) | [2D BreakOut](https://github.com/kunjgit/GameZone/tree/main/Games/2D_Breakout) | [Battleship](https://github.com/kunjgit/GameZone/tree/main/Games/Battleship) | [Baseball](https://github.com/kunjgit/GameZone/tree/main/Games/Baseball) | -| [Save Princess](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Princess) | [RoadFighter](https://github.com/kunjgit/GameZone/tree/main/Games/RoadFighter) | [Guitar Game](https://github.com/kunjgit/GameZone/tree/main/Games/Guitar_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire) | [Lady Tiger Hunter](https://github.com/kunjgit/GameZone/tree/main/Games/Lady_Tiger_Hunter) | -| [Stone Paper Scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Stone_paper_scissor) | [Flashlight_Pointer_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flashlight_Pointer_Game) | [Pig game](https://github.com/KanchanBora/GameZone/tree/main/Games/Pig_game) | [Asteroids 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Asteroids_3D) | [Lamb Lane](https://github.com/sahaycodes/GameZone/tree/meme/Games/Lamb_Lane) | -| [Dinoffline](https://github.com/kunjgit/GameZone/tree/main/Games/Dinoffline) | [Maths Sprint Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maths_Sprint_Game) | [Etch a Sketch](https://github.com/kunjgit/GameZone/tree/main/Games/Etch_a_Sketch) | [QuizzApp](https://github.com/kunjgit/GameZone/tree/main/Games/QuizzApp) | [Chess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game) | +| Game | Game | Game | Game | Game | + +| [Master Typing](https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing) | [Treasure Hunt](https://github.com/Antiquely3059/GameZone/tree/main/Games/Treasure%20Hunt) | [Virtual Pet](https://github.com/Antiquely3059/GameZone/tree/main/Games/Virtual_Pet) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | | + +| [Tilting Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Tilting_Maze) | [Simon Game Challenge](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Game_Challenge) | [Snake Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Game) | [Dino Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dino_Runner_Game) | +| [Whack a Mole](https://github.com/kunjgit/GameZone/tree/main/Games/Whack_a_Mole) | [Doraemon Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doraemon_Jump) | [Black Jack](https://github.com/kunjgit/GameZone/tree/main/Games/Black_Jack) | [Memory Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Game) | [Word Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Guessing_Game) +| [Ludo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_Game) | [Piano Game](https://github.com/kunjgit/GameZone/tree/main/Games/Piano) | [Atari Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Atari_Breakout) | [Dinosaur Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dinosaur_Game) | [Guess The Colour by RGB Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Guessing_Game) | +| [Guess The Number](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Number) | [Race car game](https://github.com/kunjgit/GameZone/tree/main/Games/race_car) | [Aim Training](https://github.com/DP-NOTHING/GameZone/tree/contri/Games/Aim_Training) | [Alien Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Alien_Shooters) | [Fruit Ninja](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Ninja) | +| [Doodle Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Jump) | [Alphabet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet) | [Candy Crush](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush) | [Word Association Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Association_Game) | [Tic Tac Toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe) | +| [Flappy Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flappy_Bird) | [Trivia It](https://hithub.com/kunjgit/GameZone/tree/main/Games/Trivia_It) | [Minesweeper](https://github.com/kunjgit/GameZone/tree/main/Games/Minesweeper) | [Dice ShowDown Game](https://github.com/Himanshu07-debug/GameZone/tree/main/Games/Dice_Showdown_Game) | [Pac Man Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pac_Man_Game) | +| [Brick Breaker Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick_Breaker) | [Magic Square Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_Square) | [Fight Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fight_Game) | [Lighthouse Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lighthouse) | [Lights Out Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lights_Out) | +| [Word Scramble Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Scramble_Game) | [Tetris](https://github.com/kunjgit/GameZone/tree/main/Games/Tetris) | [Interactive Quizzing Application](https://github.com/kunjgit/GameZone/tree/main/Games/Interactive_Quizzing) | [Planet Defense Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Defense) | [Rabbit Rush Game](https://github.com/kunjgit/GameZone/tree/main/Games/Rabbit_Rush) | +| [Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Wordle) | [Roll Race Game](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_Race) | [Menja Game](https://github.com/kunjgit/GameZone/tree/main/Games/Menja) | [Typing Speed Test Game](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test_Game) | [Tile Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tile_Game) | +| [Stick Hero Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stick_Hero_Game) | [Starwars Character Game](https://github.com/kunjgit/GameZone/tree/main/Games/Starwars_Character_Game) | [Traffic Run](https://github.com/kunjgit/GameZone/tree/main/Games/Traffic_Run) | [Love Result Predictor](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Result_Predictor) | [Tower Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Defense) | +[Menja_block_breaker](https://github.com/kunjgit/GameZone/tree/main/Games/Menja_block_breaker) | +| [Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bird_game) | [Bubble Blast Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Blast_Game) | [Emoji Charades](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Charades) | [Drum And Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Drum_Kit_Game) | [Rock Paper Scissors](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors) | +| [Frogger](https://github.com/kunjgit/GameZone/tree/main/Games/Frogger) | [!morethan5 ](https://github.com/kunjgit/GameZone/tree/main/Games/Not_morethan5) | [Unruly Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Unruly_Tower) | [Maze Game](https://github.com/kunjgit/GameZone/tree/main/Games/MazeGame) | [Connect4](https://github.com/kunjgit/GameZone/tree/main/Games/Connect4) | +| [Spelling_Bee](https://github.com/kunjgit/GameZone/tree/main/Games/Spelling_Bee) | [2048](https://github.com/kunjgit/GameZone/tree/main/Games/2048) | [Spin the Wheel](https://github.com/kunjgit/GameZone/tree/main/Games/Spin_the_wheel) | [Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Breakout) | [Tower Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Blocks) | +| [Platform Game](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_Game) | [Red Light Green Light](https://github.com/kunjgit/GameZone/tree/main/Games/Red_Light_Green_Light) | [Squash your Enemy](https://github.com/kunjgit/GameZone/tree/main/Games/Squashing_your_Enemy) | [Avax Gods](https://github.com/kunjgit/GameZone/tree/main/Games/Avax_gods) | [Flip Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Card_Game) | +| [Bingo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bingo_Game) | [Fifteen Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fifteen_Puzzle_Game) | [Stack_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stack_Game) | [Block.io_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Block.io) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | +| [Touch_The_Ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Touch_The_Ball) | [Sudoku](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku) | [Mini Golf](https://github.com/kunjgit/GameZone/tree/main/Games/Mini_Golf) | [Rubik's solver](https://github.com/kunjgit/GameZone/tree/main/Games/Rubik's_solver) | [Shoot_The_Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_The_Balloon) | +| [Dont_Die_To_Ghosts](https://github.com/kunjgit/GameZone/tree/main/Games/Dont_Die_To_Ghosts) | [SciFi Alchemy](https://github.com/kunjgit/GameZone/tree/main/Games/SciFi_Alchemy) | [Packabunchas](https://github.com/kunjgit/GameZone/tree/main/Games/Packabunchas) | [Cast and Catch](https://github.com/Sheetal-05/GameZone/tree/main/Games/Cast_and_Catch) | [Track Not Found](https://github.com/kunjgit/GameZone/tree/main/Games/Track_Not_Found) | +| [Love Calculator Game](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Calci) | [Planet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Game) | [Snake Ladder](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Ladder) | [Among Us Game](https://github.com/kunjgit/GameZone/tree/main/Games/Among_Us_Game) | [Pokedex Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokedex) | +| [Pacific Air Battle](https://github.com/kunjgit/GameZone/tree/main/Games/Pacific_Air_Battle) | [Dante](https://github.com/kunjgit/GameZone/tree/main/Games/Dante) | [Ping Pong Multiplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Multiplayer) | [Sonic The Hedgehog](https://github.com/kunjgit/GameZone/tree/main/Games/Sonic_The_Hedgehog) | [World Of Emojis](https://github.com/kunjgit/GameZone/tree/main/Games/World_Of_Emojis) | +| [Ball Fall Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Fall_Game) | [Pinball](https://github.com/kunjgit/GameZone/tree/main/Games/Pinball) | [Duck_Hunting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Duck_Hunting_Game) | [Color Turner](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Turner) | [Catch the Bunny](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_the_Bunny) | +| [Catch me game](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_me_game) | [Blank Detective](https://github.com/kunjgit/GameZone/tree/main/Games/Blanks_Detective) | [Falling Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Blocks) | [Movie Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Movie_Guessing_Game) | [Wildcard Bonanza](https://github.com/kunjgit/GameZone/tree/main/Games/Wildcard_Bonanza) | +| [The Last Spartan](https://github.com/kunjgit/GameZone/tree/main/Games/The_Last_Spartan) | [Space Exploration](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Exploration) | [Bow Arrow Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_Arrow) | [I Want To Google The Game](https://github.com/kunjgit/GameZone/tree/main/Games/I_Want_To_Google_The_Game) | [Space Gun](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Gun) | +| [Space Huggers](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Huggers) | [Spaceship Escort](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceship_Escort) | [Space Defence](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Defence) | [Glitch Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Glitch_Buster) | [3D Box Game](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Box_Game) | +| [Escape](https://github.com/kunjgit/GameZone/tree/main/Games/Escape) | [Retro Dungeon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Retro_Dungeon_Puzzle) | [Immunity Collapse](https://github.com/kunjgit/GameZone/tree/main/Games/Immunity_Collapse) | [Hunt Your Card](https://github.com/kunjgit/GameZone/tree/main/Games/Hunt_Your_Card) | [Tenacity](https://github.com/kunjgit/GameZone/tree/main/Games/Tenacity) | +| [Emoji Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Puzzle_Game) | [Back To Space](https://github.com/kunjgit/GameZone/tree/main/Games/Back_To_Space) | [Snooze](https://github.com/kunjgit/GameZone/tree/main/Games/Snooze) | [Galaxy Rider](https://github.com/kunjgit/GameZone/tree/main/Games/Galaxy_Rider) | [Squared Lines](https://github.com/kunjgit/GameZone/tree/main/Games/Squared_Lines) | +| [Space War](https://github.com/kunjgit/GameZone/tree/main/Games/Space_War) | [Sciara of Colors](https://github.com/kunjgit/GameZone/tree/main/Games/Sciara_Of_Colors) | [JunoJs](https://github.com/kunjgit/GameZone/tree/main/Games/JunoJs) | [Fall Down](https://github.com/kunjgit/GameZone/tree/main/Games/Fall_Down) | [Cat Goric](https://github.com/kunjgit/GameZone/tree/main/Games/Cat_Goric) | +| [Cable Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Cable_Maze) | [Spaceducts](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceducts) | [Zurbo](https://github.com/kunjgit/GameZone/tree/main/Games/Zurbo) | [Blast Zone](https://github.com/kunjgit/GameZone/tree/main/Games/BlastZone) | [Free Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Free_Bird) | +| [Maximise Boxes](https://github.com/kunjgit/GameZone/tree/main/Games/MaximiseBoxes) | [Slide Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Slide_Puzzle) | [Diamond Run](https://github.com/kunjgit/GameZone/tree/main/Games/Diamond_Run) | [Everyones Sky](https://github.com/kunjgit/GameZone/tree/main/Games/Everyones_Sky) | [Line Of Fire](https://github.com/kunjgit/GameZone/tree/main/Games/Line_Of_Fire) | +| [1024 Moves](https://github.com/kunjgit/GameZone/tree/main/Games/1024_Moves) | [Save The Forest](https://github.com/kunjgit/GameZone/tree/main/Games/Save_The_Forest) | [Dragon World Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_World_Game) | [DuckHunt](https://github.com/kunjgit/GameZone/tree/main/Games/DuckHunt) | [Plankman](https://github.com/kunjgit/GameZone/tree/main/Games/Plankman) | +| [Hold The Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Hold_The_Cloud) | [Labyrinth](https://github.com/kunjgit/GameZone/tree/main/Games/Labyrinth) | [RIP](https://github.com/kunjgit/GameZone/tree/main/Games/RIP) | [Risky Nav](https://github.com/kunjgit/GameZone/tree/main/Games/Risky_Nav) | [Pixels From Space](https://github.com/kunjgit/GameZone/tree/main/Games/Pixels_From_Space) | +| [Poker_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Poker_Dice) | [Unlock_The_Lock](https://github.com/kunjgit/GameZone/tree/main/Games/Unlock_The_Lock) | [Gnomedom](https://github.com/kunjgit/GameZone/tree/main/Games/Gnomedom) | [Lost In The Maze 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Lost_In_The_Maze_3D) | [PONG BALL](https://github.com/kunjgit/GameZone/tree/main/Games/Pong_Ball) | +| [Projectile Motion Game](https://github.com/kunjgit/GameZone/tree/main/Games/Projectile_Motion_Game) | [Swift](https://github.com/kunjgit/GameZone/tree/main/Games/Swift) | [Spacepi](https://github.com/kunjgit/GameZone/tree/main/Games/Spacepi) | [Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Destroyer) | [Terror_Seventy](https://github.com/kunjgit/GameZone/tree/main/Games/Terror_Seventy) | +| [Humming](https://github.com/kunjgit/GameZone/tree/main/Games/Humming) | [Word Search Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Word_search_puzzle) | [Ballarena](https://github.com/kunjgit/GameZone/tree/main/Games/Ballarena) | [Beyonder](https://github.com/kunjgit/GameZone/tree/main/Games/Beyonder) | [Shpere](https://github.com/kunjgit/GameZone/tree/main/Games/Shpere) | +| [Short Circuit](https://github.com/kunjgit/GameZone/tree/main/Games/Short_Circuit) | [Johnny Smiter](https://github.com/kunjgit/GameZone/tree/main/Games/Johnny_Smiter) | [Rectangular](https://github.com/kunjgit/GameZone/tree/main/Games/Rectangular) | [Canon Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Canon_Defense) | [Trashem](https://github.com/kunjgit/GameZone/tree/main/Games/Trashem) | +| [Chess](https://github.com/SoarinSkySagar/GameZone-GSSoC23/tree/main/Games/CHESS) | [Get The Pigeon](https://github.com/kunjgit/GameZone/tree/main/Games/Get_The_Pigeon) | [Uxu](https://github.com/kunjgit/GameZone/tree/main/Games/Uxu) | [Soul Jumper](https://github.com/kunjgit/GameZone/tree/main/Games/Soul_Jumper) | [Infernal Throne](https://github.com/kunjgit/GameZone/tree/main/Games/Infernal_Throne) | +| [Dead Again](https://github.com/kunjgit/GameZone/tree/main/Games/Dead_Again) | [Norman The Necromancer](https://github.com/kunjgit/GameZone/tree/main/Games/Norman_The_Necromancer) | [Shape Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Shape_Blocks) | [Goal_Rush](https://github.com/kunjgit/GameZone/tree/main/Games/Goal_Rush) | [Charon Jr](https://github.com/kunjgit/GameZone/tree/main/Games/Charon_Jr) | +| [Color Shifter](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Shifter) | [Oh, flip](https://github.com/kunjgit/GameZone/tree/main/Games/oh_flip) | [Snake Feeder Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Feeder_Game) | [LOSSST](https://github.com/kunjgit/GameZone/tree/main/Games/LOSSST) | [HangMan](https://github.com/kunjgit/GameZone/tree/main/Games/HangMan) | +| [Bad_Luck_Brian](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Luck_Brian) | [Bad_Depot](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Depot) | [Achluophobia](https://github.com/kunjgit/GameZone/tree/main/Games/Achluophobia) | [Timber_Terry](https://github.com/kunjgit/GameZone/tree/main/Games/Timber_Terry) | [Earth_Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Destroyer) | +| [Lonely Phantom](https://github.com/kunjgit/GameZone/tree/main/Games/Lonely_Phantom) | [Ghost Surf](https://github.com/kunjgit/GameZone/tree/main/Games/Ghost_Surf) | [Sucker](https://github.com/kunjgit/GameZone/tree/main/Games/Sucker) | [Sorades](https://github.com/kunjgit/GameZone/tree/main/Games/Sorades) | [Thirteen](https://github.com/kunjgit/GameZone/tree/main/Games/Thirteen) | +| [The Raising Fighting Spirits](https://github.com/kunjgit/GameZone/tree/main/Games/The_Raising_Fighting_Spirits) | [Green Mahjong](https://github.com/kunjgit/GameZone/tree/main/Games/Green_Mahjong) | [Drag And Drop Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Drag_And_Drop_Puzzle) | [Music Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Music_Guess_Game) | [Tower Of Hanoi](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Of_Hanoi) | +| [Mastermind_Mania](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind_Mania) | [Ludo_4_Player](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_4_Player) | [AirBalloon](https://github.com/kunjgit/GameZone/tree/main/Games/AirBalloon) | [Space Invaders](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Invaders) | [Cut the Rope](https://github.com/kunjgit/GameZone/tree/main/Games/Cut_the_rope) | +| [Caesar&Cipher](https://github.com/kunjgit/GameZone/tree/main/Games/Caesar_Cipher) | [Monster_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Monster_Maker) | [Stolen Sword](https://github.com/kunjgit/GameZone/tree/main/Games/Stolen_Sword) | [Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind) | [Highway 404](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_404) | +| [BullseyeGame](https://github.com/kunjgit/GameZone/tree/main/Games/BullseyeGame) | [Crossword Game](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Game) | [Guess the Correct Logo](https://github.com/shruti-2412/GameZone/tree/main/Games/Guess_The_Correct_Logo) | [Painting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Painting_Game) | [Platform_game_engine](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_game_engine) | +| [Doppelkopf](https://github.com/kunjgit/GameZone/tree/main/Games/Doppelkopf) | [quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/quiz_game) | [Island Survival](https://github.com/kunjgit/GameZone/tree/main/Games/Island_Survival) | [Linkup Game](https://github.com/kunjgit/GameZone/tree/main/Games/linkup) | [Trivia_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Trivia_Card) | +| [Insect Catch Game](https://github.com/kunjgit/GameZone/tree/main/Games/Insect_Catch_Game) | [Carnival_game](https://github.com/kunjgit/GameZone/tree/main/Games/Carnival_game) | [Make Me Laugh](https://github.com/kunjgit/GameZone/tree/main/Games/Make_Me_Laugh) | [Avoider_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Avoider_Game) | [Dungeon_Crawler](https://github.com/kunjgit/GameZone/tree/main/Games/Dungeon_Crawler) | +| [snake_water_gun](https://github.com/kunjgit/GameZone/tree/main/Games/snake_water_gun) | [Run and Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Run_and_Jump) | [AI CHESS Game](https://github.com/kunjgit/GameZone/tree/main/Games/AI_CHESS_Game) | [Fruit_Catching](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching) | [Bulls eye](https://github.com/kunjgit/GameZone/tree/main/Games/Bulls_eye) | +| [Crystals_Collecter](https://github.com/kunjgit/GameZone/tree/main/Games/Crystals_Collecter) | [Dots and Boxes Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dots_and_Boxes_Game) | [Infinite Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Infinite_Runner_Game) | [Mario_Matching](https://github.com/kunjgit/GameZone/tree/main/Games/mario_matching_game) | [Hand_Cricket](https://github.com/kunjgit/GameZone/tree/main/Games/Hand_Cricket) | +| [Crossword_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Puzzle) | [Pixel_Painter](https://github.com/kunjgit/GameZone/tree/main/Games/Pixel_Painter) | [Riddle_Room](https://github.com/kunjgit/GameZone/tree/main/Games/Riddle_Room) | [ArmorAlley](https://github.com/kunjgit/GameZone/tree/main/Games/ArmorAlley) | [Color_switcher](https://github.com/kunjgit/GameZone/tree/main/Games/Color_switcher) | +| [Maze of Cables](https://github.com/VSatwika/GameZonefork/tree/Maze_of_Cables/Games/Maze_of_Cables) | [Escape Room](https://github.com/kunjgit/GameZone/tree/main/Games/Escape_room) | [Super_mario_run](https://github.com/kunjgit/GameZone/tree/main/Games/Super_mario_run) | [Doodle_Draw](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Draw) | [Arcade_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arcade_Game) | +| [Slice Storm](https://github.com/VSatwika/GameZonefork/tree/Slice_Storm/Games/Slice_Storm) | [CodePen_SImulator](https://github.com/kunjgit/GameZone/tree/main/Games/CodePen_Simulator) | [Piano_Tiles](https://github.com/kunjgit/GameZone/tree/main/Games/PianoTiles_Game) | [CareTaker](https://github.com/kunjgit/GameZone/tree/main/Games/CareTaker) | [UNO](https://github.com/kunjgit/GameZone/tree/main/Games/UNO) | +| [Remeber the color](https://github.com/kunjgit/GameZone/tree/main/Games/Remember_the_color) | [Guess The Random Shape](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Random_Shape) | [Save Doraemon](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Doraemon) | [Animal_Match_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Animal_Match_Game) | [Hextris](https://github.com/kunjgit/GameZone/tree/main/Games/Hextris) | +| [MrFakeGame](https://github.com/kunjgit/GameZone/tree/main/Games/MrFakeGame) | [Checkers](https://github.com/kunjgit/GameZone/tree/main/Games/Checkers) | [Roulette](https://github.com/kunjgit/GameZone/tree/main/Games/Roulette) | [Aero Acrobat](https://github.com/kunjgit/GameZone/tree/main/Games/Aero_Acrobat) | [Adventure_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Adventure_Game) | +| [Pumpkin_Pursuit](https://github.com/kunjgit/GameZone/tree/main/Games/Pumpkin_Pursuit) | [Corona Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Corona_Shooter) | [Pokemon Ball Finder](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Ball_Finder) | [Basketball](https://github.com/kunjgit/GameZone/tree/main/Games/Basketball) | [Wault_master](https://github.com/kunjgit/GameZone/tree/main/Games/Wault_master) | +| [Reaction TIme](https://github.com/kunjgit/GameZone/tree/main/Games/Reaction_Time) | [Flag Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flag_Guess_Game) | [Cross_The_Road](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_Road) | [Highway Race - Barrel Dodge](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_Race) | [Bit_Maze_Platformer_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Bit_Maze_Platformer_Maze) | +| [Math Game](https://github.com/kunjgit/GameZone/tree/main/Games/Math_Game) | [Space Drifter](https://github.com/kunjgit/GameZone/tree/main/Games/space_drifter) | [Observe the Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Observe%20the%20Cloud) | [Cosmic_Coin_Blaster](https://github.com/kunjgit/GameZone/tree/main/Games/Cosmic_Coin_Blaster) | [Circus Charly](https://github.com/kunjgit/GameZone/tree/main/Games/Circus_Charly) | +| [Pikachu_Volleyball](https://github.com/kunjgit/GameZone/tree/main/Games/Pikachu_Volleyball) | [Trex_Run](https://github.com/akankshachanana1/GameZone/tree/Added/Games/Trex_Run) | [Crack_The_Code](https://github.com/kunjgit/GameZone/tree/main/Games/Crack_The_Code) | [Skeleathon](https://github.com/kunjgit/GameZone/tree/main/Games/Skeleathon) | [Shadow_PokeGuess](https://github.com/kunjgit/GameZone/tree/main/Games/Shadow_PokeGuess) | +| [Brain Color Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Color_Mastermind) | [Lizard Spock Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lizard_Spock_Game) | [Angry Boars](https://github.com/kunjgit/GameZone/tree/main/Games/Angry_Boars) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet_Learning_Game) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | +| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/main/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Alphabet_Learning_Game) | +| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Death by Hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Death_by_Hamster) | +| [Tenzies](https://github.com/kunjgit/GameZone/tree/main/Games/Tenzies) | [Target_Torrent](https://github.com/kunjgit/GameZone/tree/main/Games/Target_Torrent) | [Reversi](https://github.com/kunjgit/GameZone/tree/main/Games/Reversi) | [reaction_teaser](https://github.com/kunjgit/GameZone/pull/2134/files) | [Scribble](https://github.com/kunjgit/GameZone/tree/main/Games/Scribble) | +| [Brain Burst Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Burst_Game) | [StickTheSticker](https://github.com/kunjgit/GameZone/tree/main/Games/StickTheSticker) | [Meme_Battle_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Meme_Battle_Game) | [Match_Color_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Match_Color_Game) | [Bow_And_Arrow](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_And_Arrow) | +| [Beyblade](https://github.com/kunjgit/GameZone/tree/main/Games/Beyblade) | [The labyrinth of death](https://github.com/sahaycodes/GameZone/tree/meme/Games/The_labyrinth_of_death) | [2D BreakOut](https://github.com/kunjgit/GameZone/tree/main/Games/2D_Breakout) | [Battleship](https://github.com/kunjgit/GameZone/tree/main/Games/Battleship) | [Baseball](https://github.com/kunjgit/GameZone/tree/main/Games/Baseball) | +| [Save Princess](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Princess) | [RoadFighter](https://github.com/kunjgit/GameZone/tree/main/Games/RoadFighter) | [Guitar Game](https://github.com/kunjgit/GameZone/tree/main/Games/Guitar_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire) | [Lady Tiger Hunter](https://github.com/kunjgit/GameZone/tree/main/Games/Lady_Tiger_Hunter) | +| [Stone Paper Scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Stone_paper_scissor) | [Flashlight_Pointer_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flashlight_Pointer_Game) | [Pig game](https://github.com/KanchanBora/GameZone/tree/main/Games/Pig_game) | [Asteroids 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Asteroids_3D) | [Lamb Lane](https://github.com/sahaycodes/GameZone/tree/meme/Games/Lamb_Lane) | +| [Dinoffline](https://github.com/kunjgit/GameZone/tree/main/Games/Dinoffline) | [Maths Sprint Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maths_Sprint_Game) | [Etch a Sketch](https://github.com/kunjgit/GameZone/tree/main/Games/Etch_a_Sketch) | [QuizzApp](https://github.com/kunjgit/GameZone/tree/main/Games/QuizzApp) | [Chess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game) | | [Taash_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Taash_Game)| -| [Which Color](https://github.com/sahaycodes/GameZone/tree/main/Games/Which_Color) | [Snail_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Snail_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire_up) | [Slime Attack](https://github.com/apu52/GameZone/tree/Slime-Attack-game/Games/Slime_attack_game) | [Star_Trek_Trivia](https://github.com/kunjgit/GameZone/tree/starTrek-trivia/Games/Star_Trek_Trivia) | -| [Pokemon_Card_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Card_Game) | [Digit Dilemma](https://github.com/kunjgit/GameZone/tree/main/Games/Digit_Dilemma) | [Tennis](https://github.com/kunjgit/GameZone/tree/main/Games/Tennis) | [Illusion](https://github.com/kunjgit/GameZone/tree/main/Games/Illusion) | [Block Buster](https://github.com/sahaycodes/GameZone/tree/meme/Games/Block_Buster) | -| [Guess_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Ball) | [Doremon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Doremon_Puzzle) | [Guess The Celebrity](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Celeb) | [Rock_Paper_Scissors_Lizard_Spock](https://github.com/kunjgit/GameZone/tree/main/Rock_Paper_Scissors_Lizard_Spock) | [Elemental Riddles](https://github.com/kunjgit/GameZone/tree/main/Elemental_Riddles) | -| [Falling_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Ball) | [Hit Target](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_Target) | [Archery](https://github.com/kunjgit/GameZone/tree/main/Games/Archery) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | -| [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | -| [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [Code Cracker](https://github.com/kunjgit/GameZone/tree/main/Code_Cracker) | [Know Your Country](https://github.com/kunjgit/GameZone/tree/main/Games/Know_Your_Country) | [Musical_Floor](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Floor) | [Sky_Dodge](https://github.com/kunjgit/GameZone/tree/main/Sky_Dodge) | -| [Swap Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Swap-Card-Game) | [Memorization_card](https://github.com/kunjgit/GameZone/tree/main/Games/Memorization_card) | [Smashing_Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Smashing_Blocks) | [Response_Reaction](https://github.com/kunjgit/GameZone/tree/main/Games/Response_Reaction) | [Truth and Dare](https://github.com/kunjgit/GameZone/tree/main/Games/Truth_And_Dare) | -| [Rotating_Elements](https://github.com/tanujbordikar/GameZone/tree/Rotating_Elements) | [Chopsticks](https://github.com/kunjgit/GameZone/tree/main/Games/Chopsticks) | [Anime Clicker](https://github.com/kunjgit/GameZone/tree/main/Games/Anime_Clicker) | [3D Snake](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Snake) | [Rocket_Showdown](https://github.com/tanujbordikar/GameZone/tree/Rocket_Showdown) | -| [Find Extra Cube](https://github.com/kunjgit/GameZone/tree/main/Games/Find_Extra_Cube) | [PathPlex](https://github.com/kunjgit/GameZone/tree/main/Games/Pathplex) | [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [CSS Crossword](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Crossword) | -| [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [Flip Coin](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Coin) | [Witty Word Quest](https://github.com/kunjgit/GameZone/tree/main/Games/witty_word_quest) | [Typing Game](https://github.com/Ishan-77/GameZone/tree/main/Games/Typing_Game) | -| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | -| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Color_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Blast) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). | [Gobblet](https://github.com/kunjgit/GameZone/tree/main/Games/Gobblet) | -| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) +| [Which Color](https://github.com/sahaycodes/GameZone/tree/main/Games/Which_Color) | [Snail_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Snail_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire_up) | [Slime Attack](https://github.com/apu52/GameZone/tree/Slime-Attack-game/Games/Slime_attack_game) | [Star_Trek_Trivia](https://github.com/kunjgit/GameZone/tree/starTrek-trivia/Games/Star_Trek_Trivia) | +| [Pokemon_Card_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Card_Game) | [Digit Dilemma](https://github.com/kunjgit/GameZone/tree/main/Games/Digit_Dilemma) | [Tennis](https://github.com/kunjgit/GameZone/tree/main/Games/Tennis) | [Illusion](https://github.com/kunjgit/GameZone/tree/main/Games/Illusion) | [Block Buster](https://github.com/sahaycodes/GameZone/tree/meme/Games/Block_Buster) | +| [Guess_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Ball) | [Doremon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Doremon_Puzzle) | [Guess The Celebrity](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Celeb) | [Rock_Paper_Scissors_Lizard_Spock](https://github.com/kunjgit/GameZone/tree/main/Rock_Paper_Scissors_Lizard_Spock) | [Elemental Riddles](https://github.com/kunjgit/GameZone/tree/main/Elemental_Riddles) | +| [Falling_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Ball) | [Hit Target](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_Target) | [Archery](https://github.com/kunjgit/GameZone/tree/main/Games/Archery) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | +| [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | +| [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [Code Cracker](https://github.com/kunjgit/GameZone/tree/main/Code_Cracker) | [Know Your Country](https://github.com/kunjgit/GameZone/tree/main/Games/Know_Your_Country) | [Musical_Floor](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Floor) | [Sky_Dodge](https://github.com/kunjgit/GameZone/tree/main/Sky_Dodge) | +| [Swap Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Swap-Card-Game) | [Memorization_card](https://github.com/kunjgit/GameZone/tree/main/Games/Memorization_card) | [Smashing_Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Smashing_Blocks) | [Response_Reaction](https://github.com/kunjgit/GameZone/tree/main/Games/Response_Reaction) | [Truth and Dare](https://github.com/kunjgit/GameZone/tree/main/Games/Truth_And_Dare) | +| [Rotating_Elements](https://github.com/tanujbordikar/GameZone/tree/Rotating_Elements) | [Chopsticks](https://github.com/kunjgit/GameZone/tree/main/Games/Chopsticks) | [Anime Clicker](https://github.com/kunjgit/GameZone/tree/main/Games/Anime_Clicker) | [3D Snake](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Snake) | [Rocket_Showdown](https://github.com/tanujbordikar/GameZone/tree/Rocket_Showdown) | +| [Find Extra Cube](https://github.com/kunjgit/GameZone/tree/main/Games/Find_Extra_Cube) | [PathPlex](https://github.com/kunjgit/GameZone/tree/main/Games/Pathplex) | [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [CSS Crossword](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Crossword) | +| [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [Flip Coin](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Coin) | [Witty Word Quest](https://github.com/kunjgit/GameZone/tree/main/Games/witty_word_quest) | [Typing Game](https://github.com/Ishan-77/GameZone/tree/main/Games/Typing_Game) | +| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | +| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Color_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Blast) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). | [Gobblet](https://github.com/kunjgit/GameZone/tree/main/Games/Gobblet) | +| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | | | | [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | | | [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) @@ -205,7 +204,7 @@ This repository also provides one such platforms where contributers come over an | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [DoraemonRun ](https://github.com/kunjgit/GameZone/tree/main/Games/DoraemonRun) | | [Memory_Cards_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Cards_Game) | -| [Typing_Speed_Test2](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test2) | [Tic Tac Toe Responsive ](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_tac_toe_responsive) | [Minesweeper Easy ](https://github.com/kunjgit/GameZone/tree/main/Games/MineSweeper_Easy) | [Pong](https://github.com/kunjgit/GameZone/tree/main/Games/Pong) | +| [Typing_Speed_Test2](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test2) | [Tic Tac Toe Responsive ](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_tac_toe_responsive) | [Minesweeper Easy ](https://github.com/kunjgit/GameZone/tree/main/Games/MineSweeper_Easy) | [Pong](https://github.com/kunjgit/GameZone/tree/main/Games/Pong) | | [Technical_Mind_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Technical_Mind_Game) | [Slide_Master_Puzzle](https://github.com/kunjgit/GameZone/tree/Main/Games/Slide_Master_Puzz)| | | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [Letter_Sleuth](https://github.com/swetha5157/GameZone/tree/main/Games/Letter_Sleuth) @@ -220,108 +219,108 @@ This repository also provides one such platforms where contributers come over an | [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | | [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | | [Automated_rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/automated_rock_paper_scissor) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Astronaut_runner](https://github.com/tanishkaa08/GameZone/tree/main/Games/Astronaunt_runner) | -[16_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/16_Puzzle) | -| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | -| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | -| [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Bear Hunter Ninja](https://github.com/Niyatizzz/GameZone/tree/main/Games/Bear_Hunter_Ninja) | -| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | -| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | -| [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Astronaut_runner](https://github.com/tanishkaa08/GameZone/tree/main/Games/Astronaunt_runner) | +[16_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/16_Puzzle) | +| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | +| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | +| [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Bear Hunter Ninja](https://github.com/Niyatizzz/GameZone/tree/main/Games/Bear_Hunter_Ninja) | +| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | +| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | +| [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | | [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | -| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | +| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | | [Automated_rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/automated_rock_paper_scissor) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Astronaut_runner](https://github.com/tanishkaa08/GameZone/tree/main/Games/Astronaunt_runner) | -| [16_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/16_Puzzle) | -| [Musical_Memory](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Memory) | -|[Quick_Click](https://github.com/kunjgit/GameZone/tree/main/Games/Quick_Click) | -| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | -| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | -[Mancala_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Mancala_Game) | -| [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Bear Hunter Ninja](https://github.com/Niyatizzz/GameZone/tree/main/Games/Bear_Hunter_Ninja) | -| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | -| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | -| [Chrome_Dino_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dino_Game) | -| [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Astronaut_runner](https://github.com/tanishkaa08/GameZone/tree/main/Games/Astronaunt_runner) | +| [16_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/16_Puzzle) | +| [Musical_Memory](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Memory) | +|[Quick_Click](https://github.com/kunjgit/GameZone/tree/main/Games/Quick_Click) | +| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | +| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | +[Mancala_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Mancala_Game) | +| [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Bear Hunter Ninja](https://github.com/Niyatizzz/GameZone/tree/main/Games/Bear_Hunter_Ninja) | +| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | +| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | +| [Chrome_Dino_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dino_Game) | +| [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | | [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | -| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | +| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | | [Automated_rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/automated_rock_paper_scissor) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Astronaut_runner](https://github.com/tanishkaa08/GameZone/tree/main/Games/Astronaunt_runner) | -| [16_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/16_Puzzle) | -| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | -| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | -| [escaperoom](https://github.com/kunjgit/GameZone/tree/main/Games/escaperoom) | -| [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) | -| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | -| [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | -| [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | -| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | -| [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | -| [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | -| [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | -| [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | -| [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | [Bubble_Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Shooter) -| [Candy_Crush_Saga](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush_Saga) | -| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | -| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | -| [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | - [Candy_Crush_Saga](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush_Saga) | - [Colour_Generator_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Generator_Game) | -| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | -| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | -[Mancala_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Mancala_Game) | -|[2048_win](https://github.com/kunjgit/GameZone/tree/main/Games/2048_win) | -| [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Chrome_Dino_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dino_Game) | -| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | -| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | -| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | -| [Shrek_Vs_Wild](https://github.com/kunjgit/GameZone/tree/main/Games/Shrek_Vs_Wild) | -| [Balloon_Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Balloon_Buster) | -| [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | -| [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | -| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | | -| [path_finder](https://github.com/kunjgit/GameZone/tree/main/Games/path_finder) | -| [Shrek_Vs_Wild](https://github.com/kunjgit/GameZone/tree/main/Games/Shrek_Vs_Wild) | -| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | -| [Guess_num](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_num) | -| [QuickFingers](https://github.com/kunjgit/GameZone/tree/main/Games/QuickFingers) | -| [Physics_Quizz](https://github.com/kunjgit/GameZone/tree/main/Games/Physics_Quizz) | -| [Tiny_Fishing](https://github.com/kunjgit/GameZone/tree/main/Games/Tiny_Fishing) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Astronaut_runner](https://github.com/tanishkaa08/GameZone/tree/main/Games/Astronaunt_runner) | +| [16_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/16_Puzzle) | +| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | +| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | +| [escaperoom](https://github.com/kunjgit/GameZone/tree/main/Games/escaperoom) | +| [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) | +| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | +| [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | +| [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | +| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | +| [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | +| [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | +| [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | +| [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | +| [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | [Bubble_Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Shooter) +| [Candy_Crush_Saga](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush_Saga) | +| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | +| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | +| [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | +[Candy_Crush_Saga](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush_Saga) | +[Colour_Generator_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Generator_Game) | +| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | +| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | +[Mancala_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Mancala_Game) | +|[2048_win](https://github.com/kunjgit/GameZone/tree/main/Games/2048_win) | +| [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Chrome_Dino_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dino_Game) | +| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | +| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | +| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | +| [Shrek_Vs_Wild](https://github.com/kunjgit/GameZone/tree/main/Games/Shrek_Vs_Wild) | +| [Balloon_Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Balloon_Buster) | +| [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | +| [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | +| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | | +| [path_finder](https://github.com/kunjgit/GameZone/tree/main/Games/path_finder) | +| [Shrek_Vs_Wild](https://github.com/kunjgit/GameZone/tree/main/Games/Shrek_Vs_Wild) | +| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | +| [Guess_num](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_num) | +| [QuickFingers](https://github.com/kunjgit/GameZone/tree/main/Games/QuickFingers) | +| [Physics_Quizz](https://github.com/kunjgit/GameZone/tree/main/Games/Physics_Quizz) | +| [Tiny_Fishing](https://github.com/kunjgit/GameZone/tree/main/Games/Tiny_Fishing) | | [IKnowYou-Mind-Reading-Game](https://github.com/kunjgit/GameZone/tree/main/Games/IKnowYou-Mind-Reading-Game) | | [Single_Player_Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Single_Player_Solitaire) | -| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | - -| [namefate](https://github.com/kunjgit/GameZone/tree/main/Games/namefate) | -| [Fruit_Catching_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching_Game) | -| [color_matching_application](https://github.com/kunjgit/GameZone/tree/main/Games/color_matching_application) | -| [Pictionary_Game](https://github.com/Jagpreet153/GameZone/tree/main/Games/Pictionary_Game) | -| [Anagram_Checker_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Anagram_Checker_Game) | -| [HitYourFriend](https://github.com/kunjgit/GameZone/tree/main/Games/HitYourFriend) | -| [Random_joke_Generator](https://github.com/Jagpreet153/GameZone/tree/main/Games/Random_joke_Generator) | -| [Arkanoid_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arkanoid_Game) | -| [Catch_Stars](https://github.com/Kunjgit/GameZone/tree/main/Games/Catch_Stars) | -| [Color Matcher](https://github.com/1911aditi/GameZone/tree/1a4f3847e11bb13b1aca4652a87868c9bc467a93/Games/color%20matcher)                | +| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | + +| [namefate](https://github.com/kunjgit/GameZone/tree/main/Games/namefate) | +| [Fruit_Catching_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching_Game) | +| [color_matching_application](https://github.com/kunjgit/GameZone/tree/main/Games/color_matching_application) | +| [Pictionary_Game](https://github.com/Jagpreet153/GameZone/tree/main/Games/Pictionary_Game) | +| [Anagram_Checker_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Anagram_Checker_Game) | +| [HitYourFriend](https://github.com/kunjgit/GameZone/tree/main/Games/HitYourFriend) | +| [Random_joke_Generator](https://github.com/Jagpreet153/GameZone/tree/main/Games/Random_joke_Generator) | +| [Arkanoid_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arkanoid_Game) | +| [Catch_Stars](https://github.com/Kunjgit/GameZone/tree/main/Games/Catch_Stars) | +| [Color Matcher](https://github.com/1911aditi/GameZone/tree/1a4f3847e11bb13b1aca4652a87868c9bc467a93/Games/color%20matcher)                | | [LaserDarts] (https://github.com/Jagpreet153/GameZone/tree/main/Games/LaserDarts) -| [Block Building](https://github.com/kunjgit/GameZone/tree/main/Games/Block_Building) | +| [Block Building](https://github.com/kunjgit/GameZone/tree/main/Games/Block_Building) | | [Flames Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flames_Game)| -| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | -|[Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | -| [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | +| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | +|[Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | +| [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | | [Emoji_slot_machine] (https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_slot_machine) -| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) -| [Pixel Painter](https://github.com/kunjgit/GameZone/tree/main/Games/pixel_painter) | -| [Guess_The_Song](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Song) | [Reverse Memory](https://github.com/MuraliDharan7/GameZone/tree/reverse-memory-game/Games/Reverse%20Memory) -| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | -| [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | - -| [WordScramble](https://github.com/kunjgit/GameZone/tree/main/Games/wordScramble) - -[Roll_The_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_The_Dice) | -| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | -| [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | [Screen Pet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Screen-Pet-Game) | -| [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | -| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | +| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) +| [Pixel Painter](https://github.com/kunjgit/GameZone/tree/main/Games/pixel_painter) | +| [Guess_The_Song](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Song) | [Reverse Memory](https://github.com/MuraliDharan7/GameZone/tree/reverse-memory-game/Games/Reverse%20Memory) +| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | +| [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | + +| [WordScramble](https://github.com/kunjgit/GameZone/tree/main/Games/wordScramble) + +[Roll_The_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_The_Dice) | +| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | +| [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | [Screen Pet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Screen-Pet-Game) | +| [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | +| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | |[Color The Page](https://github.com/kunjgit/GameZone/tree/main/Games/Color_The_Page)| |[Pop the Bubbles](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_the_Bubbles)| @@ -330,29 +329,29 @@ This repository also provides one such platforms where contributers come over an |[Building Blocks Game](https://github.com/kunjgit/GameZone/tree/main/Games/Building_Block_Game)| |[Cartoon character guessing game](https://github.com/kunjgit/GameZone/tree/main/Games/Cartoon_Character_Guessing_Game)| |[Carrom Board Game](https://github.com/kunjgit/GameZone/tree/main/Games/carrom)| -| [Number_Recall_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Recall_Game) | -| [Hit_the_hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_the_hamster) | +| [Number_Recall_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Recall_Game) | +| [Hit_the_hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_the_hamster) | |[Carrom Board Game](https://github.com/kunjgit/GameZone/tree/main/Games/carrom)| -| [Number_Recall_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Recall_Game) | -| [Hit_the_hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_the_hamster) | +| [Number_Recall_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Recall_Game) | +| [Hit_the_hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_the_hamster) | -| [Forest_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Forst_Guardian) | -| [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | -| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | +| [Forest_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Forst_Guardian) | +| [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | +| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | |[Color The Page](https://github.com/kunjgit/GameZone/tree/main/Games/Color_The_Page)| -|[AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | -|[Chess_Game_computer](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game_computer) | -|[Turn_on_the_light](https://github.com/kunjgit/GameZone/tree/main/Games/Turn_on_the_light) | +|[AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | +|[Chess_Game_computer](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game_computer) | +|[Turn_on_the_light](https://github.com/kunjgit/GameZone/tree/main/Games/Turn_on_the_light) | |[Mamba_Mayhem](https://github.com/kunjgit/GameZone/tree/main/Games/Mamba_Mayhem)| | [Tic-Tac-Toe Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tic-Tac-Toe) | -| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) | -|[Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | -| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) | -| [Gravity_Simulation_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Gravity_Simulation_Game) | +| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) | +|[Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | +| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) | +| [Gravity_Simulation_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Gravity_Simulation_Game) | | [Anagarm-Word-Game](https://github.com/kunjgit/GameZone/tree/main/Games/Anagarm-Word-Game) | | [Brick Buster Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick Buster) | -| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) +| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) |[Penguins Cant Fly](https://github.com/Will2Jacks/GameZoneForked/tree/Task/Games/Penguins_Cant_Fly)| |[GoFish](https://github.com/kunjgit/GameZone/tree/main/Games/GoFish)| | [Taash_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Taash_Game)| @@ -364,22 +363,19 @@ This repository also provides one such platforms where contributers come over an | [Alien_Invasion](https://github.com/kunjgit/GameZone/tree/main/Games/Alien_Invasion) | | [Drawing_App](https://github.com/kunjgit/GameZone/tree/main/Games/Drawing_app) | -| [Dodge_the_Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Dodge_the_Blocks) | - +| [Dodge_the_Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Dodge_the_Blocks) | |[Town-Rise](https://github.com/kunjgit/GameZone/tree/main/Games/Town_Rise_Game)| | [IKnowYou-Mind-Reading-Game](https://github.com/kunjgit/GameZone/tree/main/Games/IKnowYou-Mind-Reading-Game) | |[Color Swap](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Swap)| -| [Catch_the_falling_Stars](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_the_falling_Stars) | +| [Catch_the_falling_Stars](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_the_falling_Stars) | |[Town-Rise](https://github.com/kunjgit/GameZone/tree/main/Games/Town_Rise_Game)| | [IKnowYou-Mind-Reading-Game](https://github.com/kunjgit/GameZone/tree/main/Games/IKnowYou-Mind-Reading-Game) | |[Rock_Paper_Scissors_Neon](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors_Neon)| |[Beat_a_mole](https://github.com/kunjgit/GameZone/tree/main/Games/Beat_a_mole)| |[Hexsweep_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Hexsweep-Game)| - -
@@ -415,10 +411,6 @@ This repository also provides one such platforms where contributers come over an Terms and conditions for use, reproduction and distribution are under the [Apache-2.0 License](https://opensource.org/license/apache-2-0/). - - - -
@@ -556,104 +548,104 @@ This repository also provides one such platforms where contributers come over an -| Game | Game | Game | Game | Game | +| Game | Game | Game | Game | Game | | ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | --- | -| [Master Typing](https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing) | [Treasure Hunt](https://github.com/Antiquely3059/GameZone/tree/main/Games/Treasure%20Hunt) | [Virtual Pet](https://github.com/Antiquely3059/GameZone/tree/main/Games/Virtual_Pet) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | | -| [Tilting Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Tilting_Maze) | [Simon Game Challenge](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Game_Challenge) | [Snake Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Game) | [Dino Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dino_Runner_Game) | -| [Whack a Mole](https://github.com/kunjgit/GameZone/tree/main/Games/Whack_a_Mole) | [Doraemon Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doraemon_Jump) | [Black Jack](https://github.com/kunjgit/GameZone/tree/main/Games/Black_Jack) | [Memory Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Game) | [Word Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Guessing_Game) | -| [Ludo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_Game) | [Piano Game](https://github.com/kunjgit/GameZone/tree/main/Games/Piano) | [Atari Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Atari_Breakout) | [Dinosaur Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dinosaur_Game) | [Guess The Colour by RGB Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Guessing_Game) | -| [Guess The Number](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Number) | [Race car game](https://github.com/kunjgit/GameZone/tree/main/Games/race_car) | [Aim Training](https://github.com/DP-NOTHING/GameZone/tree/contri/Games/Aim_Training) | [Alien Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Alien_Shooters) | [Fruit Ninja](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Ninja) | -| [Doodle Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Jump) | [Alphabet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet) | [Candy Crush](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush) | [Word Association Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Association_Game) | [Tic Tac Toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe) | -| [Flappy Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flappy_Bird) | [Trivia It](https://hithub.com/kunjgit/GameZone/tree/main/Games/Trivia_It) | [Minesweeper](https://github.com/kunjgit/GameZone/tree/main/Games/Minesweeper) | [Dice ShowDown Game](https://github.com/Himanshu07-debug/GameZone/tree/main/Games/Dice_Showdown_Game) | [Pac Man Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pac_Man_Game) | -| [Brick Breaker Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick_Breaker) | [Magic Square Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_Square) | [Fight Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fight_Game) | [Lighthouse Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lighthouse) | [Lights Out Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lights_Out) | -| [Word Scramble Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Scramble_Game) | [Tetris](https://github.com/kunjgit/GameZone/tree/main/Games/Tetris) | [Interactive Quizzing Application](https://github.com/kunjgit/GameZone/tree/main/Games/Interactive_Quizzing) | [Planet Defense Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Defense) | [Rabbit Rush Game](https://github.com/kunjgit/GameZone/tree/main/Games/Rabbit_Rush) | -| [Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Wordle) | [Roll Race Game](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_Race) | [Menja Game](https://github.com/kunjgit/GameZone/tree/main/Games/Menja) | [Typing Speed Test Game](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test_Game) | [Tile Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tile_Game) | -| [Stick Hero Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stick_Hero_Game) | [Starwars Character Game](https://github.com/kunjgit/GameZone/tree/main/Games/Starwars_Character_Game) | [Traffic Run](https://github.com/kunjgit/GameZone/tree/main/Games/Traffic_Run) | [Love Result Predictor](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Result_Predictor) | [Tower Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Defense) | -| [Menja_block_breaker](https://github.com/kunjgit/GameZone/tree/main/Games/Menja_block_breaker) | | [Yahtzee](https://github.com/kunjgit/GameZone/tree/main/Games/Yahtzee) | -| [Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bird_game) | [Bubble Blast Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Blast_Game) | [Emoji Charades](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Charades) | [Drum And Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Drum_Kit_Game) | [Rock Paper Scissors](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors) | -| [Frogger](https://github.com/kunjgit/GameZone/tree/main/Games/Frogger) | [!morethan5 ](https://github.com/kunjgit/GameZone/tree/main/Games/Not_morethan5) | [Unruly Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Unruly_Tower) | [Maze Game](https://github.com/kunjgit/GameZone/tree/main/Games/MazeGame) | [Connect4](https://github.com/kunjgit/GameZone/tree/main/Games/Connect4) | -| [Spelling_Bee](https://github.com/kunjgit/GameZone/tree/main/Games/Spelling_Bee) | [2048](https://github.com/kunjgit/GameZone/tree/main/Games/2048) | [Spin the Wheel](https://github.com/kunjgit/GameZone/tree/main/Games/Spin_the_wheel) | [Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Breakout) | [Tower Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Blocks) | -| [Platform Game](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_Game) | [Red Light Green Light](https://github.com/kunjgit/GameZone/tree/main/Games/Red_Light_Green_Light) | [Squash your Enemy](https://github.com/kunjgit/GameZone/tree/main/Games/Squashing_your_Enemy) | [Avax Gods](https://github.com/kunjgit/GameZone/tree/main/Games/Avax_gods) | [Flip Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Card_Game) | -| [Bingo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bingo_Game) | [Fifteen Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fifteen_Puzzle_Game) | [Stack_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stack_Game) | [Block.io_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Block.io) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | -| [Touch_The_Ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Touch_The_Ball) | [Sudoku](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku) | [Mini Golf](https://github.com/kunjgit/GameZone/tree/main/Games/Mini_Golf) | [Rubik's solver](https://github.com/kunjgit/GameZone/tree/main/Games/Rubik's_solver) | [Shoot_The_Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_The_Balloon) | -| [Dont_Die_To_Ghosts](https://github.com/kunjgit/GameZone/tree/main/Games/Dont_Die_To_Ghosts) | [SciFi Alchemy](https://github.com/kunjgit/GameZone/tree/main/Games/SciFi_Alchemy) | [Packabunchas](https://github.com/kunjgit/GameZone/tree/main/Games/Packabunchas) | [Cast and Catch](https://github.com/Sheetal-05/GameZone/tree/main/Games/Cast_and_Catch) | [Track Not Found](https://github.com/kunjgit/GameZone/tree/main/Games/Track_Not_Found) | -| [Love Calculator Game](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Calci) | [Planet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Game) | [Snake Ladder](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Ladder) | [Among Us Game](https://github.com/kunjgit/GameZone/tree/main/Games/Among_Us_Game) | [Pokedex Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokedex) | -| [Pacific Air Battle](https://github.com/kunjgit/GameZone/tree/main/Games/Pacific_Air_Battle) | [Dante](https://github.com/kunjgit/GameZone/tree/main/Games/Dante) | [Ping Pong Multiplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Multiplayer) | [Sonic The Hedgehog](https://github.com/kunjgit/GameZone/tree/main/Games/Sonic_The_Hedgehog) | [World Of Emojis](https://github.com/kunjgit/GameZone/tree/main/Games/World_Of_Emojis) | -| [Ball Fall Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Fall_Game) | [Pinball](https://github.com/kunjgit/GameZone/tree/main/Games/Pinball) | [Duck_Hunting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Duck_Hunting_Game) | [Color Turner](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Turner) | [Catch the Bunny](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_the_Bunny) | -| [Catch me game](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_me_game) | [Blank Detective](https://github.com/kunjgit/GameZone/tree/main/Games/Blanks_Detective) | [Falling Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Blocks) | [Movie Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Movie_Guessing_Game) | [Wildcard Bonanza](https://github.com/kunjgit/GameZone/tree/main/Games/Wildcard_Bonanza) | -| [The Last Spartan](https://github.com/kunjgit/GameZone/tree/main/Games/The_Last_Spartan) | [Space Exploration](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Exploration) | [Bow Arrow Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_Arrow) | [I Want To Google The Game](https://github.com/kunjgit/GameZone/tree/main/Games/I_Want_To_Google_The_Game) | [Space Gun](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Gun) | -| [Space Huggers](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Huggers) | [Spaceship Escort](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceship_Escort) | [Space Defence](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Defence) | [Glitch Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Glitch_Buster) | [3D Box Game](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Box_Game) | -| [Escape](https://github.com/kunjgit/GameZone/tree/main/Games/Escape) | [Retro Dungeon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Retro_Dungeon_Puzzle) | [Immunity Collapse](https://github.com/kunjgit/GameZone/tree/main/Games/Immunity_Collapse) | [Hunt Your Card](https://github.com/kunjgit/GameZone/tree/main/Games/Hunt_Your_Card) | [Tenacity](https://github.com/kunjgit/GameZone/tree/main/Games/Tenacity) | -| [Emoji Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Puzzle_Game) | [Back To Space](https://github.com/kunjgit/GameZone/tree/main/Games/Back_To_Space) | [Snooze](https://github.com/kunjgit/GameZone/tree/main/Games/Snooze) | [Galaxy Rider](https://github.com/kunjgit/GameZone/tree/main/Games/Galaxy_Rider) | [Squared Lines](https://github.com/kunjgit/GameZone/tree/main/Games/Squared_Lines) | -| [Space War](https://github.com/kunjgit/GameZone/tree/main/Games/Space_War) | [Sciara of Colors](https://github.com/kunjgit/GameZone/tree/main/Games/Sciara_Of_Colors) | [JunoJs](https://github.com/kunjgit/GameZone/tree/main/Games/JunoJs) | [Fall Down](https://github.com/kunjgit/GameZone/tree/main/Games/Fall_Down) | [Cat Goric](https://github.com/kunjgit/GameZone/tree/main/Games/Cat_Goric) | -| [Cable Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Cable_Maze) | [Spaceducts](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceducts) | [Zurbo](https://github.com/kunjgit/GameZone/tree/main/Games/Zurbo) | [Blast Zone](https://github.com/kunjgit/GameZone/tree/main/Games/BlastZone) | [Free Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Free_Bird) | -| [Maximise Boxes](https://github.com/kunjgit/GameZone/tree/main/Games/MaximiseBoxes) | [Slide Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Slide_Puzzle) | [Diamond Run](https://github.com/kunjgit/GameZone/tree/main/Games/Diamond_Run) | [Everyones Sky](https://github.com/kunjgit/GameZone/tree/main/Games/Everyones_Sky) | [Line Of Fire](https://github.com/kunjgit/GameZone/tree/main/Games/Line_Of_Fire) | -| [1024 Moves](https://github.com/kunjgit/GameZone/tree/main/Games/1024_Moves) | [Save The Forest](https://github.com/kunjgit/GameZone/tree/main/Games/Save_The_Forest) | [Dragon World Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_World_Game) | [DuckHunt](https://github.com/kunjgit/GameZone/tree/main/Games/DuckHunt) | [Plankman](https://github.com/kunjgit/GameZone/tree/main/Games/Plankman) | -| [Hold The Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Hold_The_Cloud) | [Labyrinth](https://github.com/kunjgit/GameZone/tree/main/Games/Labyrinth) | [RIP](https://github.com/kunjgit/GameZone/tree/main/Games/RIP) | [Risky Nav](https://github.com/kunjgit/GameZone/tree/main/Games/Risky_Nav) | [Pixels From Space](https://github.com/kunjgit/GameZone/tree/main/Games/Pixels_From_Space) | -| [Poker_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Poker_Dice) | [Unlock_The_Lock](https://github.com/kunjgit/GameZone/tree/main/Games/Unlock_The_Lock) | [Gnomedom](https://github.com/kunjgit/GameZone/tree/main/Games/Gnomedom) | [Lost In The Maze 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Lost_In_The_Maze_3D) | [PONG BALL](https://github.com/kunjgit/GameZone/tree/main/Games/Pong_Ball) | -| [Projectile Motion Game](https://github.com/kunjgit/GameZone/tree/main/Games/Projectile_Motion_Game) | [Swift](https://github.com/kunjgit/GameZone/tree/main/Games/Swift) | [Spacepi](https://github.com/kunjgit/GameZone/tree/main/Games/Spacepi) | [Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Destroyer) | [Terror_Seventy](https://github.com/kunjgit/GameZone/tree/main/Games/Terror_Seventy) | -| [Humming](https://github.com/kunjgit/GameZone/tree/main/Games/Humming) | [Word Search Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Word_search_puzzle) | [Ballarena](https://github.com/kunjgit/GameZone/tree/main/Games/Ballarena) | [Beyonder](https://github.com/kunjgit/GameZone/tree/main/Games/Beyonder) | [Shpere](https://github.com/kunjgit/GameZone/tree/main/Games/Shpere) | -| [Short Circuit](https://github.com/kunjgit/GameZone/tree/main/Games/Short_Circuit) | [Johnny Smiter](https://github.com/kunjgit/GameZone/tree/main/Games/Johnny_Smiter) | [Rectangular](https://github.com/kunjgit/GameZone/tree/main/Games/Rectangular) | [Canon Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Canon_Defense) | [Trashem](https://github.com/kunjgit/GameZone/tree/main/Games/Trashem) | -| [Chess](https://github.com/SoarinSkySagar/GameZone-GSSoC23/tree/main/Games/CHESS) | [Get The Pigeon](https://github.com/kunjgit/GameZone/tree/main/Games/Get_The_Pigeon) | [Uxu](https://github.com/kunjgit/GameZone/tree/main/Games/Uxu) | [Soul Jumper](https://github.com/kunjgit/GameZone/tree/main/Games/Soul_Jumper) | [Infernal Throne](https://github.com/kunjgit/GameZone/tree/main/Games/Infernal_Throne) | -| [Dead Again](https://github.com/kunjgit/GameZone/tree/main/Games/Dead_Again) | [Norman The Necromancer](https://github.com/kunjgit/GameZone/tree/main/Games/Norman_The_Necromancer) | [Shape Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Shape_Blocks) | [Goal_Rush](https://github.com/kunjgit/GameZone/tree/main/Games/Goal_Rush) | [Charon Jr](https://github.com/kunjgit/GameZone/tree/main/Games/Charon_Jr) | -| [Color Shifter](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Shifter) | [Oh, flip](https://github.com/kunjgit/GameZone/tree/main/Games/oh_flip) | [Snake Feeder Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Feeder_Game) | [LOSSST](https://github.com/kunjgit/GameZone/tree/main/Games/LOSSST) | [HangMan](https://github.com/kunjgit/GameZone/tree/main/Games/HangMan) | -| [Bad_Luck_Brian](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Luck_Brian) | [Bad_Depot](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Depot) | [Achluophobia](https://github.com/kunjgit/GameZone/tree/main/Games/Achluophobia) | [Timber_Terry](https://github.com/kunjgit/GameZone/tree/main/Games/Timber_Terry) | [Earth_Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Destroyer) | -| [Lonely Phantom](https://github.com/kunjgit/GameZone/tree/main/Games/Lonely_Phantom) | [Ghost Surf](https://github.com/kunjgit/GameZone/tree/main/Games/Ghost_Surf) | [Sucker](https://github.com/kunjgit/GameZone/tree/main/Games/Sucker) | [Sorades](https://github.com/kunjgit/GameZone/tree/main/Games/Sorades) | [Thirteen](https://github.com/kunjgit/GameZone/tree/main/Games/Thirteen) | -| [The Raising Fighting Spirits](https://github.com/kunjgit/GameZone/tree/main/Games/The_Raising_Fighting_Spirits) | [Green Mahjong](https://github.com/kunjgit/GameZone/tree/main/Games/Green_Mahjong) | [Drag And Drop Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Drag_And_Drop_Puzzle) | [Music Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Music_Guess_Game) | [Tower Of Hanoi](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Of_Hanoi) | -| [Mastermind_Mania](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind_Mania) | [Ludo_4_Player](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_4_Player) | [AirBalloon](https://github.com/kunjgit/GameZone/tree/main/Games/AirBalloon) | [Space Invaders](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Invaders) | [Cut the Rope](https://github.com/kunjgit/GameZone/tree/main/Games/Cut_the_rope) | -| [Caesar&Cipher](https://github.com/kunjgit/GameZone/tree/main/Games/Caesar_Cipher) | [Monster_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Monster_Maker) | [Stolen Sword](https://github.com/kunjgit/GameZone/tree/main/Games/Stolen_Sword) | [Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind) | [Highway 404](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_404) | -| [BullseyeGame](https://github.com/kunjgit/GameZone/tree/main/Games/BullseyeGame) | [Crossword Game](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Game) | [Guess the Correct Logo](https://github.com/shruti-2412/GameZone/tree/main/Games/Guess_The_Correct_Logo) | [Painting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Painting_Game) | [Platform_game_engine](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_game_engine) | -| [Kill_The_Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Kill_The_Bird) | -| [Doppelkopf](https://github.com/kunjgit/GameZone/tree/main/Games/Doppelkopf) | [quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/quiz_game) | [Island Survival](https://github.com/kunjgit/GameZone/tree/main/Games/Island_Survival) | [Linkup Game](https://github.com/kunjgit/GameZone/tree/main/Games/linkup) | [Trivia_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Trivia_Card) | -| [Insect Catch Game](https://github.com/kunjgit/GameZone/tree/main/Games/Insect_Catch_Game) | [Carnival_game](https://github.com/kunjgit/GameZone/tree/main/Games/Carnival_game) | [Make Me Laugh](https://github.com/kunjgit/GameZone/tree/main/Games/Make_Me_Laugh) | [Avoider_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Avoider_Game) | [Dungeon_Crawler](https://github.com/kunjgit/GameZone/tree/main/Games/Dungeon_Crawler) | -| [snake_water_gun](https://github.com/kunjgit/GameZone/tree/main/Games/snake_water_gun) | [Run and Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Run_and_Jump) | [AI CHESS Game](https://github.com/kunjgit/GameZone/tree/main/Games/AI_CHESS_Game) | [Fruit_Catching](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching) | [Bulls eye](https://github.com/kunjgit/GameZone/tree/main/Games/Bulls_eye) | -| [Crystals_Collecter](https://github.com/kunjgit/GameZone/tree/main/Games/Crystals_Collecter) | [Dots and Boxes Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dots_and_Boxes_Game) | [Infinite Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Infinite_Runner_Game) | [Mario_Matching](https://github.com/kunjgit/GameZone/tree/main/Games/mario_matching_game) | [Hand_Cricket](https://github.com/kunjgit/GameZone/tree/main/Games/Hand_Cricket) | -| [Crossword_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Puzzle) | [Pixel_Painter](https://github.com/kunjgit/GameZone/tree/main/Games/Pixel_Painter) | [Riddle_Room](https://github.com/kunjgit/GameZone/tree/main/Games/Riddle_Room) | [ArmorAlley](https://github.com/kunjgit/GameZone/tree/main/Games/ArmorAlley) | [Color_switcher](https://github.com/kunjgit/GameZone/tree/main/Games/Color_switcher) | -| [Maze of Cables](https://github.com/VSatwika/GameZonefork/tree/Maze_of_Cables/Games/Maze_of_Cables) | [Escape Room](https://github.com/kunjgit/GameZone/tree/main/Games/Escape_room) | [Super_mario_run](https://github.com/kunjgit/GameZone/tree/main/Games/Super_mario_run) | [Doodle_Draw](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Draw) | [Arcade_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arcade_Game) | -| [Slice Storm](https://github.com/VSatwika/GameZonefork/tree/Slice_Storm/Games/Slice_Storm) | [CodePen_SImulator](https://github.com/kunjgit/GameZone/tree/main/Games/CodePen_Simulator) | [Piano_Tiles](https://github.com/kunjgit/GameZone/tree/main/Games/PianoTiles_Game) | [CareTaker](https://github.com/kunjgit/GameZone/tree/main/Games/CareTaker) | [UNO](https://github.com/kunjgit/GameZone/tree/main/Games/UNO) | -| [Remeber the color](https://github.com/kunjgit/GameZone/tree/main/Games/Remember_the_color) | [Guess The Random Shape](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Random_Shape) | [Save Doraemon](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Doraemon) | [Animal_Match_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Animal_Match_Game) | [Hextris](https://github.com/kunjgit/GameZone/tree/main/Games/Hextris) | -| [MrFakeGame](https://github.com/kunjgit/GameZone/tree/main/Games/MrFakeGame) | [Checkers](https://github.com/kunjgit/GameZone/tree/main/Games/Checkers) | [Roulette](https://github.com/kunjgit/GameZone/tree/main/Games/Roulette) | [Aero Acrobat](https://github.com/kunjgit/GameZone/tree/main/Games/Aero_Acrobat) | [Adventure_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Adventure_Game) | -| [Pumpkin_Pursuit](https://github.com/kunjgit/GameZone/tree/main/Games/Pumpkin_Pursuit) | [Corona Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Corona_Shooter) | [Pokemon Ball Finder](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Ball_Finder) | [Basketball](https://github.com/kunjgit/GameZone/tree/main/Games/Basketball) | [Wault_master](https://github.com/kunjgit/GameZone/tree/main/Games/Wault_master) | -| [Reaction TIme](https://github.com/kunjgit/GameZone/tree/main/Games/Reaction_Time) | [Flag Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flag_Guess_Game) | [Cross_The_Road](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_Road) | [Highway Race - Barrel Dodge](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_Race) | [Bit_Maze_Platformer_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Bit_Maze_Platformer_Maze) | -| [Math Game](https://github.com/kunjgit/GameZone/tree/main/Games/Math_Game) | [Space Drifter](https://github.com/kunjgit/GameZone/tree/main/Games/space_drifter) | [Observe the Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Observe%20the%20Cloud) | [Cosmic_Coin_Blaster](https://github.com/kunjgit/GameZone/tree/main/Games/Cosmic_Coin_Blaster) | [Circus Charly](https://github.com/kunjgit/GameZone/tree/main/Games/Circus_Charly) | -| [Pikachu_Volleyball](https://github.com/kunjgit/GameZone/tree/main/Games/Pikachu_Volleyball) | [Trex_Run](https://github.com/akankshachanana1/GameZone/tree/Added/Games/Trex_Run) | [Crack_The_Code](https://github.com/kunjgit/GameZone/tree/main/Games/Crack_The_Code) | [Skeleathon](https://github.com/kunjgit/GameZone/tree/main/Games/Skeleathon) | [Shadow_PokeGuess](https://github.com/kunjgit/GameZone/tree/main/Games/Shadow_PokeGuess) | -| [Brain Color Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Color_Mastermind) | [Lizard Spock Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lizard_Spock_Game) | [Angry Boars](https://github.com/kunjgit/GameZone/tree/main/Games/Angry_Boars) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet_Learning_Game) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | -| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/main/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Alphabet_Learning_Game) | -| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Death by Hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Death_by_Hamster) | -| [Tenzies](https://github.com/kunjgit/GameZone/tree/main/Games/Tenzies) | [Target_Torrent](https://github.com/kunjgit/GameZone/tree/main/Games/Target_Torrent) | [Reversi](https://github.com/kunjgit/GameZone/tree/main/Games/Reversi) | [reaction_teaser](https://github.com/kunjgit/GameZone/pull/2134/files) | [Scribble](https://github.com/kunjgit/GameZone/tree/main/Games/Scribble) | -| [Brain Burst Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Burst_Game) | [StickTheSticker](https://github.com/kunjgit/GameZone/tree/main/Games/StickTheSticker) | [Meme_Battle_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Meme_Battle_Game) | [Match_Color_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Match_Color_Game) | [Bow_And_Arrow](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_And_Arrow) | -| [Beyblade](https://github.com/kunjgit/GameZone/tree/main/Games/Beyblade) | [The labyrinth of death](https://github.com/sahaycodes/GameZone/tree/meme/Games/The_labyrinth_of_death) | [2D BreakOut](https://github.com/kunjgit/GameZone/tree/main/Games/2D_Breakout) | [Battleship](https://github.com/kunjgit/GameZone/tree/main/Games/Battleship) | [Baseball](https://github.com/kunjgit/GameZone/tree/main/Games/Baseball) | -| [Save Princess](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Princess) | [RoadFighter](https://github.com/kunjgit/GameZone/tree/main/Games/RoadFighter) | [Guitar Game](https://github.com/kunjgit/GameZone/tree/main/Games/Guitar_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire) | [Lady Tiger Hunter](https://github.com/kunjgit/GameZone/tree/main/Games/Lady_Tiger_Hunter) | -| [Stone Paper Scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Stone_paper_scissor) | [Flashlight_Pointer_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flashlight_Pointer_Game) | [Pig game](https://github.com/KanchanBora/GameZone/tree/main/Games/Pig_game) | [Asteroids 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Asteroids_3D) | [Lamb Lane](https://github.com/sahaycodes/GameZone/tree/meme/Games/Lamb_Lane) | -| [Dinoffline](https://github.com/kunjgit/GameZone/tree/main/Games/Dinoffline) | [Maths Sprint Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maths_Sprint_Game) | [Etch a Sketch](https://github.com/kunjgit/GameZone/tree/main/Games/Etch_a_Sketch) | [QuizzApp](https://github.com/kunjgit/GameZone/tree/main/Games/QuizzApp) | [Chess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game) | -| [Which Color](https://github.com/sahaycodes/GameZone/tree/main/Games/Which_Color) | [Snail_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Snail_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire_up) | [Slime Attack](https://github.com/apu52/GameZone/tree/Slime-Attack-game/Games/Slime_attack_game) | [Star_Trek_Trivia](https://github.com/kunjgit/GameZone/tree/starTrek-trivia/Games/Star_Trek_Trivia) | -| [Pokemon_Card_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Card_Game) | [Digit Dilemma](https://github.com/kunjgit/GameZone/tree/main/Games/Digit_Dilemma) | [Tennis](https://github.com/kunjgit/GameZone/tree/main/Games/Tennis) | [Illusion](https://github.com/kunjgit/GameZone/tree/main/Games/Illusion) | [Block Buster](https://github.com/sahaycodes/GameZone/tree/meme/Games/Block_Buster) | -| [Guess_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Ball) | [Doremon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Doremon_Puzzle) | [Guess The Celebrity](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Celeb) | [Rock_Paper_Scissors_Lizard_Spock](https://github.com/kunjgit/GameZone/tree/main/Rock_Paper_Scissors_Lizard_Spock) | [Elemental Riddles](https://github.com/kunjgit/GameZone/tree/main/Elemental_Riddles) | -| [Falling_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Ball) | [Hit Target](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_Target) | [Archery](https://github.com/kunjgit/GameZone/tree/main/Games/Archery) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | -| [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | -| [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [Code Cracker](https://github.com/kunjgit/GameZone/tree/main/Code_Cracker) | [Know Your Country](https://github.com/kunjgit/GameZone/tree/main/Games/Know_Your_Country) | [Musical_Floor](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Floor) | [Sky_Dodge](https://github.com/kunjgit/GameZone/tree/main/Sky_Dodge) | -| [Swap Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Swap-Card-Game) | [Memorization_card](https://github.com/kunjgit/GameZone/tree/main/Games/Memorization_card) | [Smashing_Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Smashing_Blocks) | [Response_Reaction](https://github.com/kunjgit/GameZone/tree/main/Games/Response_Reaction) | [Truth and Dare](https://github.com/kunjgit/GameZone/tree/main/Games/Truth_And_Dare) | -| [Rotating_Elements](https://github.com/tanujbordikar/GameZone/tree/Rotating_Elements) | [Chopsticks](https://github.com/kunjgit/GameZone/tree/main/Games/Chopsticks) | [Anime Clicker](https://github.com/kunjgit/GameZone/tree/main/Games/Anime_Clicker) | [3D Snake](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Snake) | [Rocket_Showdown](https://github.com/tanujbordikar/GameZone/tree/Rocket_Showdown) | -| [Find Extra Cube](https://github.com/kunjgit/GameZone/tree/main/Games/Find_Extra_Cube) | [PathPlex](https://github.com/kunjgit/GameZone/tree/main/Games/Pathplex) | [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [CSS Crossword](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Crossword) | -| [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [Flip Coin](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Coin) | [Witty Word Quest](https://github.com/kunjgit/GameZone/tree/main/Games/witty_word_quest) | [Typing Game](https://github.com/Ishan-77/GameZone/tree/main/Games/Typing_Game) | -| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | -| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Color_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Blast) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). | -| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Audio_Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Audio_Wordle) | [Makeover_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Makeover_Game) -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). -| [Wordling](https://github.com/kunjgit/GameZone/tree/main/Games/Wordling) +| [Master Typing](https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing) | [Treasure Hunt](https://github.com/Antiquely3059/GameZone/tree/main/Games/Treasure%20Hunt) | [Virtual Pet](https://github.com/Antiquely3059/GameZone/tree/main/Games/Virtual_Pet) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | | +| [Tilting Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Tilting_Maze) | [Simon Game Challenge](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Game_Challenge) | [Snake Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Game) | [Dino Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dino_Runner_Game) | +| [Whack a Mole](https://github.com/kunjgit/GameZone/tree/main/Games/Whack_a_Mole) | [Doraemon Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doraemon_Jump) | [Black Jack](https://github.com/kunjgit/GameZone/tree/main/Games/Black_Jack) | [Memory Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Game) | [Word Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Guessing_Game) | +| [Ludo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_Game) | [Piano Game](https://github.com/kunjgit/GameZone/tree/main/Games/Piano) | [Atari Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Atari_Breakout) | [Dinosaur Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dinosaur_Game) | [Guess The Colour by RGB Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Guessing_Game) | +| [Guess The Number](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Number) | [Race car game](https://github.com/kunjgit/GameZone/tree/main/Games/race_car) | [Aim Training](https://github.com/DP-NOTHING/GameZone/tree/contri/Games/Aim_Training) | [Alien Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Alien_Shooters) | [Fruit Ninja](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Ninja) | +| [Doodle Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Jump) | [Alphabet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet) | [Candy Crush](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush) | [Word Association Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Association_Game) | [Tic Tac Toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe) | +| [Flappy Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flappy_Bird) | [Trivia It](https://hithub.com/kunjgit/GameZone/tree/main/Games/Trivia_It) | [Minesweeper](https://github.com/kunjgit/GameZone/tree/main/Games/Minesweeper) | [Dice ShowDown Game](https://github.com/Himanshu07-debug/GameZone/tree/main/Games/Dice_Showdown_Game) | [Pac Man Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pac_Man_Game) | +| [Brick Breaker Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick_Breaker) | [Magic Square Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_Square) | [Fight Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fight_Game) | [Lighthouse Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lighthouse) | [Lights Out Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lights_Out) | +| [Word Scramble Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Scramble_Game) | [Tetris](https://github.com/kunjgit/GameZone/tree/main/Games/Tetris) | [Interactive Quizzing Application](https://github.com/kunjgit/GameZone/tree/main/Games/Interactive_Quizzing) | [Planet Defense Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Defense) | [Rabbit Rush Game](https://github.com/kunjgit/GameZone/tree/main/Games/Rabbit_Rush) | +| [Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Wordle) | [Roll Race Game](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_Race) | [Menja Game](https://github.com/kunjgit/GameZone/tree/main/Games/Menja) | [Typing Speed Test Game](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test_Game) | [Tile Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tile_Game) | +| [Stick Hero Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stick_Hero_Game) | [Starwars Character Game](https://github.com/kunjgit/GameZone/tree/main/Games/Starwars_Character_Game) | [Traffic Run](https://github.com/kunjgit/GameZone/tree/main/Games/Traffic_Run) | [Love Result Predictor](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Result_Predictor) | [Tower Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Defense) | +| [Menja_block_breaker](https://github.com/kunjgit/GameZone/tree/main/Games/Menja_block_breaker) | | [Yahtzee](https://github.com/kunjgit/GameZone/tree/main/Games/Yahtzee) | +| [Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bird_game) | [Bubble Blast Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Blast_Game) | [Emoji Charades](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Charades) | [Drum And Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Drum_Kit_Game) | [Rock Paper Scissors](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors) | +| [Frogger](https://github.com/kunjgit/GameZone/tree/main/Games/Frogger) | [!morethan5 ](https://github.com/kunjgit/GameZone/tree/main/Games/Not_morethan5) | [Unruly Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Unruly_Tower) | [Maze Game](https://github.com/kunjgit/GameZone/tree/main/Games/MazeGame) | [Connect4](https://github.com/kunjgit/GameZone/tree/main/Games/Connect4) | +| [Spelling_Bee](https://github.com/kunjgit/GameZone/tree/main/Games/Spelling_Bee) | [2048](https://github.com/kunjgit/GameZone/tree/main/Games/2048) | [Spin the Wheel](https://github.com/kunjgit/GameZone/tree/main/Games/Spin_the_wheel) | [Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Breakout) | [Tower Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Blocks) | +| [Platform Game](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_Game) | [Red Light Green Light](https://github.com/kunjgit/GameZone/tree/main/Games/Red_Light_Green_Light) | [Squash your Enemy](https://github.com/kunjgit/GameZone/tree/main/Games/Squashing_your_Enemy) | [Avax Gods](https://github.com/kunjgit/GameZone/tree/main/Games/Avax_gods) | [Flip Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Card_Game) | +| [Bingo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bingo_Game) | [Fifteen Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fifteen_Puzzle_Game) | [Stack_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stack_Game) | [Block.io_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Block.io) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | +| [Touch_The_Ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Touch_The_Ball) | [Sudoku](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku) | [Mini Golf](https://github.com/kunjgit/GameZone/tree/main/Games/Mini_Golf) | [Rubik's solver](https://github.com/kunjgit/GameZone/tree/main/Games/Rubik's_solver) | [Shoot_The_Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_The_Balloon) | +| [Dont_Die_To_Ghosts](https://github.com/kunjgit/GameZone/tree/main/Games/Dont_Die_To_Ghosts) | [SciFi Alchemy](https://github.com/kunjgit/GameZone/tree/main/Games/SciFi_Alchemy) | [Packabunchas](https://github.com/kunjgit/GameZone/tree/main/Games/Packabunchas) | [Cast and Catch](https://github.com/Sheetal-05/GameZone/tree/main/Games/Cast_and_Catch) | [Track Not Found](https://github.com/kunjgit/GameZone/tree/main/Games/Track_Not_Found) | +| [Love Calculator Game](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Calci) | [Planet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Game) | [Snake Ladder](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Ladder) | [Among Us Game](https://github.com/kunjgit/GameZone/tree/main/Games/Among_Us_Game) | [Pokedex Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokedex) | +| [Pacific Air Battle](https://github.com/kunjgit/GameZone/tree/main/Games/Pacific_Air_Battle) | [Dante](https://github.com/kunjgit/GameZone/tree/main/Games/Dante) | [Ping Pong Multiplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Multiplayer) | [Sonic The Hedgehog](https://github.com/kunjgit/GameZone/tree/main/Games/Sonic_The_Hedgehog) | [World Of Emojis](https://github.com/kunjgit/GameZone/tree/main/Games/World_Of_Emojis) | +| [Ball Fall Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Fall_Game) | [Pinball](https://github.com/kunjgit/GameZone/tree/main/Games/Pinball) | [Duck_Hunting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Duck_Hunting_Game) | [Color Turner](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Turner) | [Catch the Bunny](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_the_Bunny) | +| [Catch me game](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_me_game) | [Blank Detective](https://github.com/kunjgit/GameZone/tree/main/Games/Blanks_Detective) | [Falling Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Blocks) | [Movie Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Movie_Guessing_Game) | [Wildcard Bonanza](https://github.com/kunjgit/GameZone/tree/main/Games/Wildcard_Bonanza) | +| [The Last Spartan](https://github.com/kunjgit/GameZone/tree/main/Games/The_Last_Spartan) | [Space Exploration](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Exploration) | [Bow Arrow Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_Arrow) | [I Want To Google The Game](https://github.com/kunjgit/GameZone/tree/main/Games/I_Want_To_Google_The_Game) | [Space Gun](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Gun) | +| [Space Huggers](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Huggers) | [Spaceship Escort](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceship_Escort) | [Space Defence](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Defence) | [Glitch Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Glitch_Buster) | [3D Box Game](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Box_Game) | +| [Escape](https://github.com/kunjgit/GameZone/tree/main/Games/Escape) | [Retro Dungeon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Retro_Dungeon_Puzzle) | [Immunity Collapse](https://github.com/kunjgit/GameZone/tree/main/Games/Immunity_Collapse) | [Hunt Your Card](https://github.com/kunjgit/GameZone/tree/main/Games/Hunt_Your_Card) | [Tenacity](https://github.com/kunjgit/GameZone/tree/main/Games/Tenacity) | +| [Emoji Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Puzzle_Game) | [Back To Space](https://github.com/kunjgit/GameZone/tree/main/Games/Back_To_Space) | [Snooze](https://github.com/kunjgit/GameZone/tree/main/Games/Snooze) | [Galaxy Rider](https://github.com/kunjgit/GameZone/tree/main/Games/Galaxy_Rider) | [Squared Lines](https://github.com/kunjgit/GameZone/tree/main/Games/Squared_Lines) | +| [Space War](https://github.com/kunjgit/GameZone/tree/main/Games/Space_War) | [Sciara of Colors](https://github.com/kunjgit/GameZone/tree/main/Games/Sciara_Of_Colors) | [JunoJs](https://github.com/kunjgit/GameZone/tree/main/Games/JunoJs) | [Fall Down](https://github.com/kunjgit/GameZone/tree/main/Games/Fall_Down) | [Cat Goric](https://github.com/kunjgit/GameZone/tree/main/Games/Cat_Goric) | +| [Cable Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Cable_Maze) | [Spaceducts](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceducts) | [Zurbo](https://github.com/kunjgit/GameZone/tree/main/Games/Zurbo) | [Blast Zone](https://github.com/kunjgit/GameZone/tree/main/Games/BlastZone) | [Free Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Free_Bird) | +| [Maximise Boxes](https://github.com/kunjgit/GameZone/tree/main/Games/MaximiseBoxes) | [Slide Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Slide_Puzzle) | [Diamond Run](https://github.com/kunjgit/GameZone/tree/main/Games/Diamond_Run) | [Everyones Sky](https://github.com/kunjgit/GameZone/tree/main/Games/Everyones_Sky) | [Line Of Fire](https://github.com/kunjgit/GameZone/tree/main/Games/Line_Of_Fire) | +| [1024 Moves](https://github.com/kunjgit/GameZone/tree/main/Games/1024_Moves) | [Save The Forest](https://github.com/kunjgit/GameZone/tree/main/Games/Save_The_Forest) | [Dragon World Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_World_Game) | [DuckHunt](https://github.com/kunjgit/GameZone/tree/main/Games/DuckHunt) | [Plankman](https://github.com/kunjgit/GameZone/tree/main/Games/Plankman) | +| [Hold The Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Hold_The_Cloud) | [Labyrinth](https://github.com/kunjgit/GameZone/tree/main/Games/Labyrinth) | [RIP](https://github.com/kunjgit/GameZone/tree/main/Games/RIP) | [Risky Nav](https://github.com/kunjgit/GameZone/tree/main/Games/Risky_Nav) | [Pixels From Space](https://github.com/kunjgit/GameZone/tree/main/Games/Pixels_From_Space) | +| [Poker_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Poker_Dice) | [Unlock_The_Lock](https://github.com/kunjgit/GameZone/tree/main/Games/Unlock_The_Lock) | [Gnomedom](https://github.com/kunjgit/GameZone/tree/main/Games/Gnomedom) | [Lost In The Maze 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Lost_In_The_Maze_3D) | [PONG BALL](https://github.com/kunjgit/GameZone/tree/main/Games/Pong_Ball) | +| [Projectile Motion Game](https://github.com/kunjgit/GameZone/tree/main/Games/Projectile_Motion_Game) | [Swift](https://github.com/kunjgit/GameZone/tree/main/Games/Swift) | [Spacepi](https://github.com/kunjgit/GameZone/tree/main/Games/Spacepi) | [Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Destroyer) | [Terror_Seventy](https://github.com/kunjgit/GameZone/tree/main/Games/Terror_Seventy) | +| [Humming](https://github.com/kunjgit/GameZone/tree/main/Games/Humming) | [Word Search Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Word_search_puzzle) | [Ballarena](https://github.com/kunjgit/GameZone/tree/main/Games/Ballarena) | [Beyonder](https://github.com/kunjgit/GameZone/tree/main/Games/Beyonder) | [Shpere](https://github.com/kunjgit/GameZone/tree/main/Games/Shpere) | +| [Short Circuit](https://github.com/kunjgit/GameZone/tree/main/Games/Short_Circuit) | [Johnny Smiter](https://github.com/kunjgit/GameZone/tree/main/Games/Johnny_Smiter) | [Rectangular](https://github.com/kunjgit/GameZone/tree/main/Games/Rectangular) | [Canon Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Canon_Defense) | [Trashem](https://github.com/kunjgit/GameZone/tree/main/Games/Trashem) | +| [Chess](https://github.com/SoarinSkySagar/GameZone-GSSoC23/tree/main/Games/CHESS) | [Get The Pigeon](https://github.com/kunjgit/GameZone/tree/main/Games/Get_The_Pigeon) | [Uxu](https://github.com/kunjgit/GameZone/tree/main/Games/Uxu) | [Soul Jumper](https://github.com/kunjgit/GameZone/tree/main/Games/Soul_Jumper) | [Infernal Throne](https://github.com/kunjgit/GameZone/tree/main/Games/Infernal_Throne) | +| [Dead Again](https://github.com/kunjgit/GameZone/tree/main/Games/Dead_Again) | [Norman The Necromancer](https://github.com/kunjgit/GameZone/tree/main/Games/Norman_The_Necromancer) | [Shape Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Shape_Blocks) | [Goal_Rush](https://github.com/kunjgit/GameZone/tree/main/Games/Goal_Rush) | [Charon Jr](https://github.com/kunjgit/GameZone/tree/main/Games/Charon_Jr) | +| [Color Shifter](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Shifter) | [Oh, flip](https://github.com/kunjgit/GameZone/tree/main/Games/oh_flip) | [Snake Feeder Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Feeder_Game) | [LOSSST](https://github.com/kunjgit/GameZone/tree/main/Games/LOSSST) | [HangMan](https://github.com/kunjgit/GameZone/tree/main/Games/HangMan) | +| [Bad_Luck_Brian](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Luck_Brian) | [Bad_Depot](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Depot) | [Achluophobia](https://github.com/kunjgit/GameZone/tree/main/Games/Achluophobia) | [Timber_Terry](https://github.com/kunjgit/GameZone/tree/main/Games/Timber_Terry) | [Earth_Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Destroyer) | +| [Lonely Phantom](https://github.com/kunjgit/GameZone/tree/main/Games/Lonely_Phantom) | [Ghost Surf](https://github.com/kunjgit/GameZone/tree/main/Games/Ghost_Surf) | [Sucker](https://github.com/kunjgit/GameZone/tree/main/Games/Sucker) | [Sorades](https://github.com/kunjgit/GameZone/tree/main/Games/Sorades) | [Thirteen](https://github.com/kunjgit/GameZone/tree/main/Games/Thirteen) | +| [The Raising Fighting Spirits](https://github.com/kunjgit/GameZone/tree/main/Games/The_Raising_Fighting_Spirits) | [Green Mahjong](https://github.com/kunjgit/GameZone/tree/main/Games/Green_Mahjong) | [Drag And Drop Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Drag_And_Drop_Puzzle) | [Music Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Music_Guess_Game) | [Tower Of Hanoi](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Of_Hanoi) | +| [Mastermind_Mania](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind_Mania) | [Ludo_4_Player](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_4_Player) | [AirBalloon](https://github.com/kunjgit/GameZone/tree/main/Games/AirBalloon) | [Space Invaders](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Invaders) | [Cut the Rope](https://github.com/kunjgit/GameZone/tree/main/Games/Cut_the_rope) | +| [Caesar&Cipher](https://github.com/kunjgit/GameZone/tree/main/Games/Caesar_Cipher) | [Monster_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Monster_Maker) | [Stolen Sword](https://github.com/kunjgit/GameZone/tree/main/Games/Stolen_Sword) | [Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind) | [Highway 404](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_404) | +| [BullseyeGame](https://github.com/kunjgit/GameZone/tree/main/Games/BullseyeGame) | [Crossword Game](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Game) | [Guess the Correct Logo](https://github.com/shruti-2412/GameZone/tree/main/Games/Guess_The_Correct_Logo) | [Painting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Painting_Game) | [Platform_game_engine](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_game_engine) | +| [Kill_The_Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Kill_The_Bird) | +| [Doppelkopf](https://github.com/kunjgit/GameZone/tree/main/Games/Doppelkopf) | [quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/quiz_game) | [Island Survival](https://github.com/kunjgit/GameZone/tree/main/Games/Island_Survival) | [Linkup Game](https://github.com/kunjgit/GameZone/tree/main/Games/linkup) | [Trivia_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Trivia_Card) | +| [Insect Catch Game](https://github.com/kunjgit/GameZone/tree/main/Games/Insect_Catch_Game) | [Carnival_game](https://github.com/kunjgit/GameZone/tree/main/Games/Carnival_game) | [Make Me Laugh](https://github.com/kunjgit/GameZone/tree/main/Games/Make_Me_Laugh) | [Avoider_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Avoider_Game) | [Dungeon_Crawler](https://github.com/kunjgit/GameZone/tree/main/Games/Dungeon_Crawler) | +| [snake_water_gun](https://github.com/kunjgit/GameZone/tree/main/Games/snake_water_gun) | [Run and Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Run_and_Jump) | [AI CHESS Game](https://github.com/kunjgit/GameZone/tree/main/Games/AI_CHESS_Game) | [Fruit_Catching](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching) | [Bulls eye](https://github.com/kunjgit/GameZone/tree/main/Games/Bulls_eye) | +| [Crystals_Collecter](https://github.com/kunjgit/GameZone/tree/main/Games/Crystals_Collecter) | [Dots and Boxes Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dots_and_Boxes_Game) | [Infinite Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Infinite_Runner_Game) | [Mario_Matching](https://github.com/kunjgit/GameZone/tree/main/Games/mario_matching_game) | [Hand_Cricket](https://github.com/kunjgit/GameZone/tree/main/Games/Hand_Cricket) | +| [Crossword_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Puzzle) | [Pixel_Painter](https://github.com/kunjgit/GameZone/tree/main/Games/Pixel_Painter) | [Riddle_Room](https://github.com/kunjgit/GameZone/tree/main/Games/Riddle_Room) | [ArmorAlley](https://github.com/kunjgit/GameZone/tree/main/Games/ArmorAlley) | [Color_switcher](https://github.com/kunjgit/GameZone/tree/main/Games/Color_switcher) | +| [Maze of Cables](https://github.com/VSatwika/GameZonefork/tree/Maze_of_Cables/Games/Maze_of_Cables) | [Escape Room](https://github.com/kunjgit/GameZone/tree/main/Games/Escape_room) | [Super_mario_run](https://github.com/kunjgit/GameZone/tree/main/Games/Super_mario_run) | [Doodle_Draw](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Draw) | [Arcade_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arcade_Game) | +| [Slice Storm](https://github.com/VSatwika/GameZonefork/tree/Slice_Storm/Games/Slice_Storm) | [CodePen_SImulator](https://github.com/kunjgit/GameZone/tree/main/Games/CodePen_Simulator) | [Piano_Tiles](https://github.com/kunjgit/GameZone/tree/main/Games/PianoTiles_Game) | [CareTaker](https://github.com/kunjgit/GameZone/tree/main/Games/CareTaker) | [UNO](https://github.com/kunjgit/GameZone/tree/main/Games/UNO) | +| [Remeber the color](https://github.com/kunjgit/GameZone/tree/main/Games/Remember_the_color) | [Guess The Random Shape](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Random_Shape) | [Save Doraemon](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Doraemon) | [Animal_Match_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Animal_Match_Game) | [Hextris](https://github.com/kunjgit/GameZone/tree/main/Games/Hextris) | +| [MrFakeGame](https://github.com/kunjgit/GameZone/tree/main/Games/MrFakeGame) | [Checkers](https://github.com/kunjgit/GameZone/tree/main/Games/Checkers) | [Roulette](https://github.com/kunjgit/GameZone/tree/main/Games/Roulette) | [Aero Acrobat](https://github.com/kunjgit/GameZone/tree/main/Games/Aero_Acrobat) | [Adventure_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Adventure_Game) | +| [Pumpkin_Pursuit](https://github.com/kunjgit/GameZone/tree/main/Games/Pumpkin_Pursuit) | [Corona Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Corona_Shooter) | [Pokemon Ball Finder](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Ball_Finder) | [Basketball](https://github.com/kunjgit/GameZone/tree/main/Games/Basketball) | [Wault_master](https://github.com/kunjgit/GameZone/tree/main/Games/Wault_master) | +| [Reaction TIme](https://github.com/kunjgit/GameZone/tree/main/Games/Reaction_Time) | [Flag Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flag_Guess_Game) | [Cross_The_Road](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_Road) | [Highway Race - Barrel Dodge](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_Race) | [Bit_Maze_Platformer_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Bit_Maze_Platformer_Maze) | +| [Math Game](https://github.com/kunjgit/GameZone/tree/main/Games/Math_Game) | [Space Drifter](https://github.com/kunjgit/GameZone/tree/main/Games/space_drifter) | [Observe the Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Observe%20the%20Cloud) | [Cosmic_Coin_Blaster](https://github.com/kunjgit/GameZone/tree/main/Games/Cosmic_Coin_Blaster) | [Circus Charly](https://github.com/kunjgit/GameZone/tree/main/Games/Circus_Charly) | +| [Pikachu_Volleyball](https://github.com/kunjgit/GameZone/tree/main/Games/Pikachu_Volleyball) | [Trex_Run](https://github.com/akankshachanana1/GameZone/tree/Added/Games/Trex_Run) | [Crack_The_Code](https://github.com/kunjgit/GameZone/tree/main/Games/Crack_The_Code) | [Skeleathon](https://github.com/kunjgit/GameZone/tree/main/Games/Skeleathon) | [Shadow_PokeGuess](https://github.com/kunjgit/GameZone/tree/main/Games/Shadow_PokeGuess) | +| [Brain Color Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Color_Mastermind) | [Lizard Spock Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lizard_Spock_Game) | [Angry Boars](https://github.com/kunjgit/GameZone/tree/main/Games/Angry_Boars) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet_Learning_Game) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | +| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/main/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Alphabet_Learning_Game) | +| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Death by Hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Death_by_Hamster) | +| [Tenzies](https://github.com/kunjgit/GameZone/tree/main/Games/Tenzies) | [Target_Torrent](https://github.com/kunjgit/GameZone/tree/main/Games/Target_Torrent) | [Reversi](https://github.com/kunjgit/GameZone/tree/main/Games/Reversi) | [reaction_teaser](https://github.com/kunjgit/GameZone/pull/2134/files) | [Scribble](https://github.com/kunjgit/GameZone/tree/main/Games/Scribble) | +| [Brain Burst Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Burst_Game) | [StickTheSticker](https://github.com/kunjgit/GameZone/tree/main/Games/StickTheSticker) | [Meme_Battle_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Meme_Battle_Game) | [Match_Color_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Match_Color_Game) | [Bow_And_Arrow](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_And_Arrow) | +| [Beyblade](https://github.com/kunjgit/GameZone/tree/main/Games/Beyblade) | [The labyrinth of death](https://github.com/sahaycodes/GameZone/tree/meme/Games/The_labyrinth_of_death) | [2D BreakOut](https://github.com/kunjgit/GameZone/tree/main/Games/2D_Breakout) | [Battleship](https://github.com/kunjgit/GameZone/tree/main/Games/Battleship) | [Baseball](https://github.com/kunjgit/GameZone/tree/main/Games/Baseball) | +| [Save Princess](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Princess) | [RoadFighter](https://github.com/kunjgit/GameZone/tree/main/Games/RoadFighter) | [Guitar Game](https://github.com/kunjgit/GameZone/tree/main/Games/Guitar_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire) | [Lady Tiger Hunter](https://github.com/kunjgit/GameZone/tree/main/Games/Lady_Tiger_Hunter) | +| [Stone Paper Scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Stone_paper_scissor) | [Flashlight_Pointer_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flashlight_Pointer_Game) | [Pig game](https://github.com/KanchanBora/GameZone/tree/main/Games/Pig_game) | [Asteroids 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Asteroids_3D) | [Lamb Lane](https://github.com/sahaycodes/GameZone/tree/meme/Games/Lamb_Lane) | +| [Dinoffline](https://github.com/kunjgit/GameZone/tree/main/Games/Dinoffline) | [Maths Sprint Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maths_Sprint_Game) | [Etch a Sketch](https://github.com/kunjgit/GameZone/tree/main/Games/Etch_a_Sketch) | [QuizzApp](https://github.com/kunjgit/GameZone/tree/main/Games/QuizzApp) | [Chess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game) | +| [Which Color](https://github.com/sahaycodes/GameZone/tree/main/Games/Which_Color) | [Snail_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Snail_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire_up) | [Slime Attack](https://github.com/apu52/GameZone/tree/Slime-Attack-game/Games/Slime_attack_game) | [Star_Trek_Trivia](https://github.com/kunjgit/GameZone/tree/starTrek-trivia/Games/Star_Trek_Trivia) | +| [Pokemon_Card_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Card_Game) | [Digit Dilemma](https://github.com/kunjgit/GameZone/tree/main/Games/Digit_Dilemma) | [Tennis](https://github.com/kunjgit/GameZone/tree/main/Games/Tennis) | [Illusion](https://github.com/kunjgit/GameZone/tree/main/Games/Illusion) | [Block Buster](https://github.com/sahaycodes/GameZone/tree/meme/Games/Block_Buster) | +| [Guess_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Ball) | [Doremon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Doremon_Puzzle) | [Guess The Celebrity](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Celeb) | [Rock_Paper_Scissors_Lizard_Spock](https://github.com/kunjgit/GameZone/tree/main/Rock_Paper_Scissors_Lizard_Spock) | [Elemental Riddles](https://github.com/kunjgit/GameZone/tree/main/Elemental_Riddles) | +| [Falling_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Ball) | [Hit Target](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_Target) | [Archery](https://github.com/kunjgit/GameZone/tree/main/Games/Archery) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | +| [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | +| [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [Code Cracker](https://github.com/kunjgit/GameZone/tree/main/Code_Cracker) | [Know Your Country](https://github.com/kunjgit/GameZone/tree/main/Games/Know_Your_Country) | [Musical_Floor](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Floor) | [Sky_Dodge](https://github.com/kunjgit/GameZone/tree/main/Sky_Dodge) | +| [Swap Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Swap-Card-Game) | [Memorization_card](https://github.com/kunjgit/GameZone/tree/main/Games/Memorization_card) | [Smashing_Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Smashing_Blocks) | [Response_Reaction](https://github.com/kunjgit/GameZone/tree/main/Games/Response_Reaction) | [Truth and Dare](https://github.com/kunjgit/GameZone/tree/main/Games/Truth_And_Dare) | +| [Rotating_Elements](https://github.com/tanujbordikar/GameZone/tree/Rotating_Elements) | [Chopsticks](https://github.com/kunjgit/GameZone/tree/main/Games/Chopsticks) | [Anime Clicker](https://github.com/kunjgit/GameZone/tree/main/Games/Anime_Clicker) | [3D Snake](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Snake) | [Rocket_Showdown](https://github.com/tanujbordikar/GameZone/tree/Rocket_Showdown) | +| [Find Extra Cube](https://github.com/kunjgit/GameZone/tree/main/Games/Find_Extra_Cube) | [PathPlex](https://github.com/kunjgit/GameZone/tree/main/Games/Pathplex) | [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [CSS Crossword](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Crossword) | +| [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [Flip Coin](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Coin) | [Witty Word Quest](https://github.com/kunjgit/GameZone/tree/main/Games/witty_word_quest) | [Typing Game](https://github.com/Ishan-77/GameZone/tree/main/Games/Typing_Game) | +| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | +| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Color_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Blast) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). | +| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Audio_Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Audio_Wordle) | [Makeover_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Makeover_Game) +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). +| [Wordling](https://github.com/kunjgit/GameZone/tree/main/Games/Wordling) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) -| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Audio_Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Audio_Wordle>>>>>>> main +| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Audio_Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Audio_Wordle>>>>>>> main | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | | [escaperoom](https://github.com/kunjgit/GameZone/tree/main/Games/escaperoom) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) | [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | | [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | - [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics)| +[TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics)| | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | | [CopyCat](https://github.com/kunjgit/GameZone/tree/main/Games/CopyCat) | -| [Cross_The_River_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_River_Game) | +| [Cross_The_River_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_River_Game) | [DoraemonRun ](https://github.com/kunjgit/GameZone/tree/main/Games/DoraemonRun) | | [Memory_Cards_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Cards_Game) | | [Typing_Speed_Test2](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test2) | [Tic Tac Toe Responsive ](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_tac_toe_responsive) | [Minesweeper Easy ](https://github.com/kunjgit/GameZone/tree/main/Games/MineSweeper_Easy) | @@ -793,8 +785,8 @@ This repository also provides one such platforms where contributers come over an |[AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | |[Chess_Game_computer](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game_computer) | |[Turn_on_the_light](https://github.com/kunjgit/GameZone/tree/main/Games/Turn_on_the_light) | -|[AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | -| [whack a mole](https://github.com/kunjgit/GameZone/tree/main/Games/whack%20a%20mole) | +|[AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | +| [whack a mole](https://github.com/kunjgit/GameZone/tree/main/Games/whack%20a%20mole) | | [Snake](https://github.com/kunjgit/GameZone/tree/main/Games/snake)                | | [Dice_Game] (https://github.com/shivan2004/GameZone/tree/main/Games/Dice_Game)| |[HitOrMiss](https://github.com/kunjgit/GameZone/tree/main/Games/HitOrMiss)| @@ -804,11 +796,11 @@ This repository also provides one such platforms where contributers come over an | [Bubble'z Popper](https://github.com/Chandu6702/GameZone/tree/main/Games/Bubble'z Popper)| | [Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | | [Gravity_Simulation_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Gravity_Simulation_Game) | -| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) -| [Catch_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Ball) | -| [Ball_in_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_in_Maze) | -|[Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | -| [Gravity_Simulation_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Gravity_Simulation_Game) +| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) +| [Catch_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Ball) | +| [Ball_in_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_in_Maze) | +|[Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | +| [Gravity_Simulation_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Gravity_Simulation_Game) | [Anagarm-Word-Game](https://github.com/kunjgit/GameZone/tree/main/Games/Anagarm-Word-Game) | | [Brick Buster Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick Buster) | | [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) @@ -819,7 +811,7 @@ This repository also provides one such platforms where contributers come over an | [Number_Guessing_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Guessing_Game) | | [Currency_Converter](https://github.com/kunjgit/GameZone/tree/main/Games/Currency_Converter) | | [mario-game](https://github.com/kunjgit/GameZone/tree/main/Games/mario-game) | -| [Fruit_Slicer_Game] (https://github.com/narayani9120/GameZone_B/tree/main/Games/Fruit_Slicer_Game) | +| [Fruit_Slicer_Game] (https://github.com/narayani9120/GameZone_B/tree/main/Games/Fruit_Slicer_Game) | | [Tower_Block_Game](https://github.com/Saipradyumnagoud/GameZone/tree/main/Games/Tower_Block_Game) | | [Modulo_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Modulo_Game) | | [Memory_Matching_Game](https://github.com/Saipradyumnagoud/GameZone/tree/main/Games/Memory_Matching_Game) | @@ -838,7 +830,7 @@ This repository also provides one such platforms where contributers come over an |[OutRun_Offline_Game](https://github.com/kunjgit/GameZone/tree/main/Games/OutRun_Offline_Game)| |[Tower Defence Game](https://github.com/Will2Jacks/GameZoneForked/tree/Task/Games/Tower_Defence_Game)| - + | [Jigsaw_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Jigsaw_Puzzle) | | [Mathematics Escape Room](https://github.com/kunjgit/GameZone/tree/main/Games/MathematicsEscapeRoom) | @@ -856,7 +848,7 @@ This repository also provides one such platforms where contributers come over an | [Tic_Tac_Toe_Neon](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe_Neon) | | [Ultimate_Football_Manager](https://github.com/kunjgit/GameZone/tree/main/Games/Ultimate_Football_Manager) | |[Zombie_Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Zombie_Shooter)| - | [Ganesh_QR_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Ganesh_QR_Maker) | +| [Ganesh_QR_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Ganesh_QR_Maker) | |[Brain_Card_game](https://github.com/Kunjgit/GameZone/tree/main/Games/Brain_Card_game)| |[Wheel_of_Fortunes](https://github.com/kunjgit/GameZone/tree/main/Games/Wheel_of_Fortunes)| |[Samurai_Fighting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Samurai_Fighting_Game)| @@ -868,6 +860,8 @@ This repository also provides one such platforms where contributers come over an | [Catch_Craze](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_Craze) | |[Dice_Rolling_Simulator](https://github.com/priyashuu/GameZone/tree/main/Games/Dice_rolling_simulator)| |[Space_Dominators](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Dominators)| +|[CowBull](https://github.com/kunjgit/GameZone/tree/main/Games/CowBull)| +
From aff7a72f29cb56c3a68c35a5b20e9ca3556d5f5d Mon Sep 17 00:00:00 2001 From: mukilan2815 Date: Tue, 30 Jul 2024 20:22:15 +0530 Subject: [PATCH 3/3] Add new games to GameZone --- README.md | 931 +++++++++++++++++++++++++++--------------------------- 1 file changed, 462 insertions(+), 469 deletions(-) diff --git a/README.md b/README.md index a9bbefe4e2..e081fcab74 100644 --- a/README.md +++ b/README.md @@ -107,92 +107,90 @@ This repository also provides one such platforms where contributers come over an - - -| [Master Typing](https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing) | [Treasure Hunt](https://github.com/Antiquely3059/GameZone/tree/main/Games/Treasure%20Hunt) | [Virtual Pet](https://github.com/Antiquely3059/GameZone/tree/main/Games/Virtual_Pet) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | [Madlibs](https://github.com/AaryanManghnani/GameZone/tree/main/Games/Madlibs) | +| [Master Typing](https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing) | [Treasure Hunt](https://github.com/Antiquely3059/GameZone/tree/main/Games/Treasure%20Hunt) | [Virtual Pet](https://github.com/Antiquely3059/GameZone/tree/main/Games/Virtual_Pet) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | [Madlibs](https://github.com/AaryanManghnani/GameZone/tree/main/Games/Madlibs) | | [Bulls_And_Cows_New](https://github.com/kunjgit/GameZone/tree/main/Games/Bulls_And_Cows_New) | [Find The Number](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_Number) -| [Guess_That_Pokemon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_That_Pokemon) -| [Tilting Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Tilting_Maze) | [Simon Game Challenge](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Game_Challenge) | [Snake Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Game) | [Dino Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dino_Runner_Game) | -| [Whack a Mole](https://github.com/kunjgit/GameZone/tree/main/Games/Whack_a_Mole) | [Doraemon Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doraemon_Jump) | [Black Jack](https://github.com/kunjgit/GameZone/tree/main/Games/Black_Jack) | [Memory Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Game) | [Word Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Guessing_Game) -| [Ludo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_Game) | [Piano Game](https://github.com/kunjgit/GameZone/tree/main/Games/Piano) | [Atari Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Atari_Breakout) | [Dinosaur Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dinosaur_Game) | [Guess The Colour by RGB Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Guessing_Game) | -| [Guess The Number](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Number) | [Race car game](https://github.com/kunjgit/GameZone/tree/main/Games/race_car) | [Aim Training](https://github.com/DP-NOTHING/GameZone/tree/contri/Games/Aim_Training) | [Alien Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Alien_Shooters) | [Fruit Ninja](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Ninja) | -| [Doodle Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Jump) | [Alphabet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet) | [Candy Crush](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush) | [Word Association Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Association_Game) | [Tic Tac Toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe) | -| [Flappy Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flappy_Bird) | [Trivia It](https://hithub.com/kunjgit/GameZone/tree/main/Games/Trivia_It) | [Minesweeper](https://github.com/kunjgit/GameZone/tree/main/Games/Minesweeper) | [Dice ShowDown Game](https://github.com/Himanshu07-debug/GameZone/tree/main/Games/Dice_Showdown_Game) | [Pac Man Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pac_Man_Game) | -| [Brick Breaker Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick_Breaker) | [Magic Square Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_Square) | [Fight Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fight_Game) | [Lighthouse Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lighthouse) | [Lights Out Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lights_Out) | -| [Word Scramble Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Scramble_Game) | [Tetris](https://github.com/kunjgit/GameZone/tree/main/Games/Tetris) | [Interactive Quizzing Application](https://github.com/kunjgit/GameZone/tree/main/Games/Interactive_Quizzing) | [Planet Defense Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Defense) | [Rabbit Rush Game](https://github.com/kunjgit/GameZone/tree/main/Games/Rabbit_Rush) | -| [Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Wordle) | [Roll Race Game](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_Race) | [Menja Game](https://github.com/kunjgit/GameZone/tree/main/Games/Menja) | [Typing Speed Test Game](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test_Game) | [Tile Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tile_Game) | -| [Stick Hero Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stick_Hero_Game) | [Starwars Character Game](https://github.com/kunjgit/GameZone/tree/main/Games/Starwars_Character_Game) | [Traffic Run](https://github.com/kunjgit/GameZone/tree/main/Games/Traffic_Run) | [Love Result Predictor](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Result_Predictor) | [Tower Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Defense) | -[Menja_block_breaker](https://github.com/kunjgit/GameZone/tree/main/Games/Menja_block_breaker) | -| [Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bird_game) | [Bubble Blast Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Blast_Game) | [Emoji Charades](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Charades) | [Drum And Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Drum_Kit_Game) | [Rock Paper Scissors](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors) | -| [Frogger](https://github.com/kunjgit/GameZone/tree/main/Games/Frogger) | [!morethan5 ](https://github.com/kunjgit/GameZone/tree/main/Games/Not_morethan5) | [Unruly Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Unruly_Tower) | [Maze Game](https://github.com/kunjgit/GameZone/tree/main/Games/MazeGame) | [Connect4](https://github.com/kunjgit/GameZone/tree/main/Games/Connect4) | -| [Spelling_Bee](https://github.com/kunjgit/GameZone/tree/main/Games/Spelling_Bee) | [2048](https://github.com/kunjgit/GameZone/tree/main/Games/2048) | [Spin the Wheel](https://github.com/kunjgit/GameZone/tree/main/Games/Spin_the_wheel) | [Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Breakout) | [Tower Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Blocks) | -| [Platform Game](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_Game) | [Red Light Green Light](https://github.com/kunjgit/GameZone/tree/main/Games/Red_Light_Green_Light) | [Squash your Enemy](https://github.com/kunjgit/GameZone/tree/main/Games/Squashing_your_Enemy) | [Avax Gods](https://github.com/kunjgit/GameZone/tree/main/Games/Avax_gods) | [Flip Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Card_Game) | -| [Bingo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bingo_Game) | [Fifteen Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fifteen_Puzzle_Game) | [Stack_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stack_Game) | [Block.io_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Block.io) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | -| [Touch_The_Ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Touch_The_Ball) | [Sudoku](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku) | [Mini Golf](https://github.com/kunjgit/GameZone/tree/main/Games/Mini_Golf) | [Rubik's solver](https://github.com/kunjgit/GameZone/tree/main/Games/Rubik's_solver) | [Shoot_The_Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_The_Balloon) | -| [Dont_Die_To_Ghosts](https://github.com/kunjgit/GameZone/tree/main/Games/Dont_Die_To_Ghosts) | [SciFi Alchemy](https://github.com/kunjgit/GameZone/tree/main/Games/SciFi_Alchemy) | [Packabunchas](https://github.com/kunjgit/GameZone/tree/main/Games/Packabunchas) | [Cast and Catch](https://github.com/Sheetal-05/GameZone/tree/main/Games/Cast_and_Catch) | [Track Not Found](https://github.com/kunjgit/GameZone/tree/main/Games/Track_Not_Found) | -| [Love Calculator Game](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Calci) | [Planet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Game) | [Snake Ladder](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Ladder) | [Among Us Game](https://github.com/kunjgit/GameZone/tree/main/Games/Among_Us_Game) | [Pokedex Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokedex) | -| [Pacific Air Battle](https://github.com/kunjgit/GameZone/tree/main/Games/Pacific_Air_Battle) | [Dante](https://github.com/kunjgit/GameZone/tree/main/Games/Dante) | [Ping Pong Multiplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Multiplayer) | [Sonic The Hedgehog](https://github.com/kunjgit/GameZone/tree/main/Games/Sonic_The_Hedgehog) | [World Of Emojis](https://github.com/kunjgit/GameZone/tree/main/Games/World_Of_Emojis) | -| [Ball Fall Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Fall_Game) | [Pinball](https://github.com/kunjgit/GameZone/tree/main/Games/Pinball) | [Duck_Hunting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Duck_Hunting_Game) | [Color Turner](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Turner) | [Catch the Bunny](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_the_Bunny) | -| [Catch me game](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_me_game) | [Blank Detective](https://github.com/kunjgit/GameZone/tree/main/Games/Blanks_Detective) | [Falling Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Blocks) | [Movie Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Movie_Guessing_Game) | [Wildcard Bonanza](https://github.com/kunjgit/GameZone/tree/main/Games/Wildcard_Bonanza) | -| [The Last Spartan](https://github.com/kunjgit/GameZone/tree/main/Games/The_Last_Spartan) | [Space Exploration](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Exploration) | [Bow Arrow Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_Arrow) | [I Want To Google The Game](https://github.com/kunjgit/GameZone/tree/main/Games/I_Want_To_Google_The_Game) | [Space Gun](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Gun) | -| [Space Huggers](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Huggers) | [Spaceship Escort](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceship_Escort) | [Space Defence](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Defence) | [Glitch Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Glitch_Buster) | [3D Box Game](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Box_Game) | -| [Escape](https://github.com/kunjgit/GameZone/tree/main/Games/Escape) | [Retro Dungeon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Retro_Dungeon_Puzzle) | [Immunity Collapse](https://github.com/kunjgit/GameZone/tree/main/Games/Immunity_Collapse) | [Hunt Your Card](https://github.com/kunjgit/GameZone/tree/main/Games/Hunt_Your_Card) | [Tenacity](https://github.com/kunjgit/GameZone/tree/main/Games/Tenacity) | -| [Emoji Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Puzzle_Game) | [Back To Space](https://github.com/kunjgit/GameZone/tree/main/Games/Back_To_Space) | [Snooze](https://github.com/kunjgit/GameZone/tree/main/Games/Snooze) | [Galaxy Rider](https://github.com/kunjgit/GameZone/tree/main/Games/Galaxy_Rider) | [Squared Lines](https://github.com/kunjgit/GameZone/tree/main/Games/Squared_Lines) | -| [Space War](https://github.com/kunjgit/GameZone/tree/main/Games/Space_War) | [Sciara of Colors](https://github.com/kunjgit/GameZone/tree/main/Games/Sciara_Of_Colors) | [JunoJs](https://github.com/kunjgit/GameZone/tree/main/Games/JunoJs) | [Fall Down](https://github.com/kunjgit/GameZone/tree/main/Games/Fall_Down) | [Cat Goric](https://github.com/kunjgit/GameZone/tree/main/Games/Cat_Goric) | -| [Cable Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Cable_Maze) | [Spaceducts](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceducts) | [Zurbo](https://github.com/kunjgit/GameZone/tree/main/Games/Zurbo) | [Blast Zone](https://github.com/kunjgit/GameZone/tree/main/Games/BlastZone) | [Free Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Free_Bird) | -| [Maximise Boxes](https://github.com/kunjgit/GameZone/tree/main/Games/MaximiseBoxes) | [Slide Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Slide_Puzzle) | [Diamond Run](https://github.com/kunjgit/GameZone/tree/main/Games/Diamond_Run) | [Everyones Sky](https://github.com/kunjgit/GameZone/tree/main/Games/Everyones_Sky) | [Line Of Fire](https://github.com/kunjgit/GameZone/tree/main/Games/Line_Of_Fire) | -| [1024 Moves](https://github.com/kunjgit/GameZone/tree/main/Games/1024_Moves) | [Save The Forest](https://github.com/kunjgit/GameZone/tree/main/Games/Save_The_Forest) | [Dragon World Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_World_Game) | [DuckHunt](https://github.com/kunjgit/GameZone/tree/main/Games/DuckHunt) | [Plankman](https://github.com/kunjgit/GameZone/tree/main/Games/Plankman) | -| [Hold The Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Hold_The_Cloud) | [Labyrinth](https://github.com/kunjgit/GameZone/tree/main/Games/Labyrinth) | [RIP](https://github.com/kunjgit/GameZone/tree/main/Games/RIP) | [Risky Nav](https://github.com/kunjgit/GameZone/tree/main/Games/Risky_Nav) | [Pixels From Space](https://github.com/kunjgit/GameZone/tree/main/Games/Pixels_From_Space) | -| [Poker_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Poker_Dice) | [Unlock_The_Lock](https://github.com/kunjgit/GameZone/tree/main/Games/Unlock_The_Lock) | [Gnomedom](https://github.com/kunjgit/GameZone/tree/main/Games/Gnomedom) | [Lost In The Maze 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Lost_In_The_Maze_3D) | [PONG BALL](https://github.com/kunjgit/GameZone/tree/main/Games/Pong_Ball) | -| [Projectile Motion Game](https://github.com/kunjgit/GameZone/tree/main/Games/Projectile_Motion_Game) | [Swift](https://github.com/kunjgit/GameZone/tree/main/Games/Swift) | [Spacepi](https://github.com/kunjgit/GameZone/tree/main/Games/Spacepi) | [Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Destroyer) | [Terror_Seventy](https://github.com/kunjgit/GameZone/tree/main/Games/Terror_Seventy) | -| [Humming](https://github.com/kunjgit/GameZone/tree/main/Games/Humming) | [Word Search Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Word_search_puzzle) | [Ballarena](https://github.com/kunjgit/GameZone/tree/main/Games/Ballarena) | [Beyonder](https://github.com/kunjgit/GameZone/tree/main/Games/Beyonder) | [Shpere](https://github.com/kunjgit/GameZone/tree/main/Games/Shpere) | -| [Short Circuit](https://github.com/kunjgit/GameZone/tree/main/Games/Short_Circuit) | [Johnny Smiter](https://github.com/kunjgit/GameZone/tree/main/Games/Johnny_Smiter) | [Rectangular](https://github.com/kunjgit/GameZone/tree/main/Games/Rectangular) | [Canon Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Canon_Defense) | [Trashem](https://github.com/kunjgit/GameZone/tree/main/Games/Trashem) | -| [Chess](https://github.com/SoarinSkySagar/GameZone-GSSoC23/tree/main/Games/CHESS) | [Get The Pigeon](https://github.com/kunjgit/GameZone/tree/main/Games/Get_The_Pigeon) | [Uxu](https://github.com/kunjgit/GameZone/tree/main/Games/Uxu) | [Soul Jumper](https://github.com/kunjgit/GameZone/tree/main/Games/Soul_Jumper) | [Infernal Throne](https://github.com/kunjgit/GameZone/tree/main/Games/Infernal_Throne) | -| [Dead Again](https://github.com/kunjgit/GameZone/tree/main/Games/Dead_Again) | [Norman The Necromancer](https://github.com/kunjgit/GameZone/tree/main/Games/Norman_The_Necromancer) | [Shape Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Shape_Blocks) | [Goal_Rush](https://github.com/kunjgit/GameZone/tree/main/Games/Goal_Rush) | [Charon Jr](https://github.com/kunjgit/GameZone/tree/main/Games/Charon_Jr) | -| [Color Shifter](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Shifter) | [Oh, flip](https://github.com/kunjgit/GameZone/tree/main/Games/oh_flip) | [Snake Feeder Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Feeder_Game) | [LOSSST](https://github.com/kunjgit/GameZone/tree/main/Games/LOSSST) | [HangMan](https://github.com/kunjgit/GameZone/tree/main/Games/HangMan) | -| [Bad_Luck_Brian](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Luck_Brian) | [Bad_Depot](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Depot) | [Achluophobia](https://github.com/kunjgit/GameZone/tree/main/Games/Achluophobia) | [Timber_Terry](https://github.com/kunjgit/GameZone/tree/main/Games/Timber_Terry) | [Earth_Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Destroyer) | -| [Lonely Phantom](https://github.com/kunjgit/GameZone/tree/main/Games/Lonely_Phantom) | [Ghost Surf](https://github.com/kunjgit/GameZone/tree/main/Games/Ghost_Surf) | [Sucker](https://github.com/kunjgit/GameZone/tree/main/Games/Sucker) | [Sorades](https://github.com/kunjgit/GameZone/tree/main/Games/Sorades) | [Thirteen](https://github.com/kunjgit/GameZone/tree/main/Games/Thirteen) | -| [The Raising Fighting Spirits](https://github.com/kunjgit/GameZone/tree/main/Games/The_Raising_Fighting_Spirits) | [Green Mahjong](https://github.com/kunjgit/GameZone/tree/main/Games/Green_Mahjong) | [Drag And Drop Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Drag_And_Drop_Puzzle) | [Music Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Music_Guess_Game) | [Tower Of Hanoi](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Of_Hanoi) | -| [Mastermind_Mania](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind_Mania) | [Ludo_4_Player](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_4_Player) | [AirBalloon](https://github.com/kunjgit/GameZone/tree/main/Games/AirBalloon) | [Space Invaders](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Invaders) | [Cut the Rope](https://github.com/kunjgit/GameZone/tree/main/Games/Cut_the_rope) | -| [Caesar&Cipher](https://github.com/kunjgit/GameZone/tree/main/Games/Caesar_Cipher) | [Monster_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Monster_Maker) | [Stolen Sword](https://github.com/kunjgit/GameZone/tree/main/Games/Stolen_Sword) | [Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind) | [Highway 404](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_404) | -| [BullseyeGame](https://github.com/kunjgit/GameZone/tree/main/Games/BullseyeGame) | [Crossword Game](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Game) | [Guess the Correct Logo](https://github.com/shruti-2412/GameZone/tree/main/Games/Guess_The_Correct_Logo) | [Painting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Painting_Game) | [Platform_game_engine](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_game_engine) | -| [Doppelkopf](https://github.com/kunjgit/GameZone/tree/main/Games/Doppelkopf) | [quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/quiz_game) | [Island Survival](https://github.com/kunjgit/GameZone/tree/main/Games/Island_Survival) | [Linkup Game](https://github.com/kunjgit/GameZone/tree/main/Games/linkup) | [Trivia_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Trivia_Card) | -| [Insect Catch Game](https://github.com/kunjgit/GameZone/tree/main/Games/Insect_Catch_Game) | [Carnival_game](https://github.com/kunjgit/GameZone/tree/main/Games/Carnival_game) | [Make Me Laugh](https://github.com/kunjgit/GameZone/tree/main/Games/Make_Me_Laugh) | [Avoider_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Avoider_Game) | [Dungeon_Crawler](https://github.com/kunjgit/GameZone/tree/main/Games/Dungeon_Crawler) | -| [snake_water_gun](https://github.com/kunjgit/GameZone/tree/main/Games/snake_water_gun) | [Run and Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Run_and_Jump) | [AI CHESS Game](https://github.com/kunjgit/GameZone/tree/main/Games/AI_CHESS_Game) | [Fruit_Catching](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching) | [Bulls eye](https://github.com/kunjgit/GameZone/tree/main/Games/Bulls_eye) | -| [Crystals_Collecter](https://github.com/kunjgit/GameZone/tree/main/Games/Crystals_Collecter) | [Dots and Boxes Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dots_and_Boxes_Game) | [Infinite Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Infinite_Runner_Game) | [Mario_Matching](https://github.com/kunjgit/GameZone/tree/main/Games/mario_matching_game) | [Hand_Cricket](https://github.com/kunjgit/GameZone/tree/main/Games/Hand_Cricket) | -| [Crossword_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Puzzle) | [Pixel_Painter](https://github.com/kunjgit/GameZone/tree/main/Games/Pixel_Painter) | [Riddle_Room](https://github.com/kunjgit/GameZone/tree/main/Games/Riddle_Room) | [ArmorAlley](https://github.com/kunjgit/GameZone/tree/main/Games/ArmorAlley) | [Color_switcher](https://github.com/kunjgit/GameZone/tree/main/Games/Color_switcher) | -| [Maze of Cables](https://github.com/VSatwika/GameZonefork/tree/Maze_of_Cables/Games/Maze_of_Cables) | [Escape Room](https://github.com/kunjgit/GameZone/tree/main/Games/Escape_room) | [Super_mario_run](https://github.com/kunjgit/GameZone/tree/main/Games/Super_mario_run) | [Doodle_Draw](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Draw) | [Arcade_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arcade_Game) | -| [Slice Storm](https://github.com/VSatwika/GameZonefork/tree/Slice_Storm/Games/Slice_Storm) | [CodePen_SImulator](https://github.com/kunjgit/GameZone/tree/main/Games/CodePen_Simulator) | [Piano_Tiles](https://github.com/kunjgit/GameZone/tree/main/Games/PianoTiles_Game) | [CareTaker](https://github.com/kunjgit/GameZone/tree/main/Games/CareTaker) | [UNO](https://github.com/kunjgit/GameZone/tree/main/Games/UNO) | -| [Remeber the color](https://github.com/kunjgit/GameZone/tree/main/Games/Remember_the_color) | [Guess The Random Shape](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Random_Shape) | [Save Doraemon](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Doraemon) | [Animal_Match_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Animal_Match_Game) | [Hextris](https://github.com/kunjgit/GameZone/tree/main/Games/Hextris) | -| [MrFakeGame](https://github.com/kunjgit/GameZone/tree/main/Games/MrFakeGame) | [Checkers](https://github.com/kunjgit/GameZone/tree/main/Games/Checkers) | [Roulette](https://github.com/kunjgit/GameZone/tree/main/Games/Roulette) | [Aero Acrobat](https://github.com/kunjgit/GameZone/tree/main/Games/Aero_Acrobat) | [Adventure_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Adventure_Game) | -| [Pumpkin_Pursuit](https://github.com/kunjgit/GameZone/tree/main/Games/Pumpkin_Pursuit) | [Corona Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Corona_Shooter) | [Pokemon Ball Finder](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Ball_Finder) | [Basketball](https://github.com/kunjgit/GameZone/tree/main/Games/Basketball) | [Wault_master](https://github.com/kunjgit/GameZone/tree/main/Games/Wault_master) | -| [Reaction TIme](https://github.com/kunjgit/GameZone/tree/main/Games/Reaction_Time) | [Flag Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flag_Guess_Game) | [Cross_The_Road](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_Road) | [Highway Race - Barrel Dodge](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_Race) | [Bit_Maze_Platformer_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Bit_Maze_Platformer_Maze) | -| [Math Game](https://github.com/kunjgit/GameZone/tree/main/Games/Math_Game) | [Space Drifter](https://github.com/kunjgit/GameZone/tree/main/Games/space_drifter) | [Observe the Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Observe%20the%20Cloud) | [Cosmic_Coin_Blaster](https://github.com/kunjgit/GameZone/tree/main/Games/Cosmic_Coin_Blaster) | [Circus Charly](https://github.com/kunjgit/GameZone/tree/main/Games/Circus_Charly) | -| [Pikachu_Volleyball](https://github.com/kunjgit/GameZone/tree/main/Games/Pikachu_Volleyball) | [Trex_Run](https://github.com/akankshachanana1/GameZone/tree/Added/Games/Trex_Run) | [Crack_The_Code](https://github.com/kunjgit/GameZone/tree/main/Games/Crack_The_Code) | [Skeleathon](https://github.com/kunjgit/GameZone/tree/main/Games/Skeleathon) | [Shadow_PokeGuess](https://github.com/kunjgit/GameZone/tree/main/Games/Shadow_PokeGuess) | -| [Brain Color Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Color_Mastermind) | [Lizard Spock Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lizard_Spock_Game) | [Angry Boars](https://github.com/kunjgit/GameZone/tree/main/Games/Angry_Boars) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet_Learning_Game) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | -| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/main/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Alphabet_Learning_Game) | -| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Death by Hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Death_by_Hamster) | -| [Tenzies](https://github.com/kunjgit/GameZone/tree/main/Games/Tenzies) | [Target_Torrent](https://github.com/kunjgit/GameZone/tree/main/Games/Target_Torrent) | [Reversi](https://github.com/kunjgit/GameZone/tree/main/Games/Reversi) | [reaction_teaser](https://github.com/kunjgit/GameZone/pull/2134/files) | [Scribble](https://github.com/kunjgit/GameZone/tree/main/Games/Scribble) | -| [Brain Burst Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Burst_Game) | [StickTheSticker](https://github.com/kunjgit/GameZone/tree/main/Games/StickTheSticker) | [Meme_Battle_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Meme_Battle_Game) | [Match_Color_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Match_Color_Game) | [Bow_And_Arrow](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_And_Arrow) | -| [Beyblade](https://github.com/kunjgit/GameZone/tree/main/Games/Beyblade) | [The labyrinth of death](https://github.com/sahaycodes/GameZone/tree/meme/Games/The_labyrinth_of_death) | [2D BreakOut](https://github.com/kunjgit/GameZone/tree/main/Games/2D_Breakout) | [Battleship](https://github.com/kunjgit/GameZone/tree/main/Games/Battleship) | [Baseball](https://github.com/kunjgit/GameZone/tree/main/Games/Baseball) | -| [Save Princess](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Princess) | [RoadFighter](https://github.com/kunjgit/GameZone/tree/main/Games/RoadFighter) | [Guitar Game](https://github.com/kunjgit/GameZone/tree/main/Games/Guitar_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire) | [Lady Tiger Hunter](https://github.com/kunjgit/GameZone/tree/main/Games/Lady_Tiger_Hunter) | -| [Stone Paper Scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Stone_paper_scissor) | [Flashlight_Pointer_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flashlight_Pointer_Game) | [Pig game](https://github.com/KanchanBora/GameZone/tree/main/Games/Pig_game) | [Asteroids 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Asteroids_3D) | [Lamb Lane](https://github.com/sahaycodes/GameZone/tree/meme/Games/Lamb_Lane) | -| [Dinoffline](https://github.com/kunjgit/GameZone/tree/main/Games/Dinoffline) | [Maths Sprint Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maths_Sprint_Game) | [Etch a Sketch](https://github.com/kunjgit/GameZone/tree/main/Games/Etch_a_Sketch) | [QuizzApp](https://github.com/kunjgit/GameZone/tree/main/Games/QuizzApp) | [Chess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game) | -| [Which Color](https://github.com/sahaycodes/GameZone/tree/main/Games/Which_Color) | [Snail_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Snail_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire_up) | [Slime Attack](https://github.com/apu52/GameZone/tree/Slime-Attack-game/Games/Slime_attack_game) | [Star_Trek_Trivia](https://github.com/kunjgit/GameZone/tree/starTrek-trivia/Games/Star_Trek_Trivia) | -| [Pokemon_Card_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Card_Game) | [Digit Dilemma](https://github.com/kunjgit/GameZone/tree/main/Games/Digit_Dilemma) | [Tennis](https://github.com/kunjgit/GameZone/tree/main/Games/Tennis) | [Illusion](https://github.com/kunjgit/GameZone/tree/main/Games/Illusion) | [Block Buster](https://github.com/sahaycodes/GameZone/tree/meme/Games/Block_Buster) | -| [Guess_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Ball) | [Doremon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Doremon_Puzzle) | [Guess The Celebrity](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Celeb) | [Rock_Paper_Scissors_Lizard_Spock](https://github.com/kunjgit/GameZone/tree/main/Rock_Paper_Scissors_Lizard_Spock) | [Elemental Riddles](https://github.com/kunjgit/GameZone/tree/main/Elemental_Riddles) | -| [Falling_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Ball) | [Hit Target](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_Target) | [Archery](https://github.com/kunjgit/GameZone/tree/main/Games/Archery) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | -| [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | -| [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [Code Cracker](https://github.com/kunjgit/GameZone/tree/main/Code_Cracker) | [Know Your Country](https://github.com/kunjgit/GameZone/tree/main/Games/Know_Your_Country) | [Musical_Floor](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Floor) | [Sky_Dodge](https://github.com/kunjgit/GameZone/tree/main/Sky_Dodge) | -| [Swap Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Swap-Card-Game) | [Memorization_card](https://github.com/kunjgit/GameZone/tree/main/Games/Memorization_card) | [Smashing_Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Smashing_Blocks) | [Response_Reaction](https://github.com/kunjgit/GameZone/tree/main/Games/Response_Reaction) | [Truth and Dare](https://github.com/kunjgit/GameZone/tree/main/Games/Truth_And_Dare) | -| [Rotating_Elements](https://github.com/tanujbordikar/GameZone/tree/Rotating_Elements) | [Chopsticks](https://github.com/kunjgit/GameZone/tree/main/Games/Chopsticks) | [Anime Clicker](https://github.com/kunjgit/GameZone/tree/main/Games/Anime_Clicker) | [3D Snake](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Snake) | [Rocket_Showdown](https://github.com/tanujbordikar/GameZone/tree/Rocket_Showdown) | -| [Find Extra Cube](https://github.com/kunjgit/GameZone/tree/main/Games/Find_Extra_Cube) | [PathPlex](https://github.com/kunjgit/GameZone/tree/main/Games/Pathplex) | [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [CSS Crossword](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Crossword) | -| [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [Flip Coin](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Coin) | [Witty Word Quest](https://github.com/kunjgit/GameZone/tree/main/Games/witty_word_quest) | [Typing Game](https://github.com/Ishan-77/GameZone/tree/main/Games/Typing_Game) | -| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | -| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Color_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Blast) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). | -| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) +| [Guess_That_Pokemon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_That_Pokemon) +| [Tilting Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Tilting_Maze) | [Simon Game Challenge](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Game_Challenge) | [Snake Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Game) | [Dino Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dino_Runner_Game) | +| [Whack a Mole](https://github.com/kunjgit/GameZone/tree/main/Games/Whack_a_Mole) | [Doraemon Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doraemon_Jump) | [Black Jack](https://github.com/kunjgit/GameZone/tree/main/Games/Black_Jack) | [Memory Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Game) | [Word Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Guessing_Game) +| [Ludo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_Game) | [Piano Game](https://github.com/kunjgit/GameZone/tree/main/Games/Piano) | [Atari Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Atari_Breakout) | [Dinosaur Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dinosaur_Game) | [Guess The Colour by RGB Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Guessing_Game) | +| [Guess The Number](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Number) | [Race car game](https://github.com/kunjgit/GameZone/tree/main/Games/race_car) | [Aim Training](https://github.com/DP-NOTHING/GameZone/tree/contri/Games/Aim_Training) | [Alien Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Alien_Shooters) | [Fruit Ninja](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Ninja) | +| [Doodle Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Jump) | [Alphabet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet) | [Candy Crush](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush) | [Word Association Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Association_Game) | [Tic Tac Toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe) | +| [Flappy Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flappy_Bird) | [Trivia It](https://hithub.com/kunjgit/GameZone/tree/main/Games/Trivia_It) | [Minesweeper](https://github.com/kunjgit/GameZone/tree/main/Games/Minesweeper) | [Dice ShowDown Game](https://github.com/Himanshu07-debug/GameZone/tree/main/Games/Dice_Showdown_Game) | [Pac Man Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pac_Man_Game) | +| [Brick Breaker Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick_Breaker) | [Magic Square Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_Square) | [Fight Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fight_Game) | [Lighthouse Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lighthouse) | [Lights Out Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lights_Out) | +| [Word Scramble Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Scramble_Game) | [Tetris](https://github.com/kunjgit/GameZone/tree/main/Games/Tetris) | [Interactive Quizzing Application](https://github.com/kunjgit/GameZone/tree/main/Games/Interactive_Quizzing) | [Planet Defense Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Defense) | [Rabbit Rush Game](https://github.com/kunjgit/GameZone/tree/main/Games/Rabbit_Rush) | +| [Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Wordle) | [Roll Race Game](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_Race) | [Menja Game](https://github.com/kunjgit/GameZone/tree/main/Games/Menja) | [Typing Speed Test Game](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test_Game) | [Tile Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tile_Game) | +| [Stick Hero Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stick_Hero_Game) | [Starwars Character Game](https://github.com/kunjgit/GameZone/tree/main/Games/Starwars_Character_Game) | [Traffic Run](https://github.com/kunjgit/GameZone/tree/main/Games/Traffic_Run) | [Love Result Predictor](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Result_Predictor) | [Tower Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Defense) | +[Menja_block_breaker](https://github.com/kunjgit/GameZone/tree/main/Games/Menja_block_breaker) | +| [Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bird_game) | [Bubble Blast Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Blast_Game) | [Emoji Charades](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Charades) | [Drum And Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Drum_Kit_Game) | [Rock Paper Scissors](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors) | +| [Frogger](https://github.com/kunjgit/GameZone/tree/main/Games/Frogger) | [!morethan5 ](https://github.com/kunjgit/GameZone/tree/main/Games/Not_morethan5) | [Unruly Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Unruly_Tower) | [Maze Game](https://github.com/kunjgit/GameZone/tree/main/Games/MazeGame) | [Connect4](https://github.com/kunjgit/GameZone/tree/main/Games/Connect4) | +| [Spelling_Bee](https://github.com/kunjgit/GameZone/tree/main/Games/Spelling_Bee) | [2048](https://github.com/kunjgit/GameZone/tree/main/Games/2048) | [Spin the Wheel](https://github.com/kunjgit/GameZone/tree/main/Games/Spin_the_wheel) | [Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Breakout) | [Tower Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Blocks) | +| [Platform Game](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_Game) | [Red Light Green Light](https://github.com/kunjgit/GameZone/tree/main/Games/Red_Light_Green_Light) | [Squash your Enemy](https://github.com/kunjgit/GameZone/tree/main/Games/Squashing_your_Enemy) | [Avax Gods](https://github.com/kunjgit/GameZone/tree/main/Games/Avax_gods) | [Flip Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Card_Game) | +| [Bingo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bingo_Game) | [Fifteen Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fifteen_Puzzle_Game) | [Stack_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stack_Game) | [Block.io_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Block.io) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | +| [Touch_The_Ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Touch_The_Ball) | [Sudoku](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku) | [Mini Golf](https://github.com/kunjgit/GameZone/tree/main/Games/Mini_Golf) | [Rubik's solver](https://github.com/kunjgit/GameZone/tree/main/Games/Rubik's_solver) | [Shoot_The_Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_The_Balloon) | +| [Dont_Die_To_Ghosts](https://github.com/kunjgit/GameZone/tree/main/Games/Dont_Die_To_Ghosts) | [SciFi Alchemy](https://github.com/kunjgit/GameZone/tree/main/Games/SciFi_Alchemy) | [Packabunchas](https://github.com/kunjgit/GameZone/tree/main/Games/Packabunchas) | [Cast and Catch](https://github.com/Sheetal-05/GameZone/tree/main/Games/Cast_and_Catch) | [Track Not Found](https://github.com/kunjgit/GameZone/tree/main/Games/Track_Not_Found) | +| [Love Calculator Game](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Calci) | [Planet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Game) | [Snake Ladder](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Ladder) | [Among Us Game](https://github.com/kunjgit/GameZone/tree/main/Games/Among_Us_Game) | [Pokedex Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokedex) | +| [Pacific Air Battle](https://github.com/kunjgit/GameZone/tree/main/Games/Pacific_Air_Battle) | [Dante](https://github.com/kunjgit/GameZone/tree/main/Games/Dante) | [Ping Pong Multiplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Multiplayer) | [Sonic The Hedgehog](https://github.com/kunjgit/GameZone/tree/main/Games/Sonic_The_Hedgehog) | [World Of Emojis](https://github.com/kunjgit/GameZone/tree/main/Games/World_Of_Emojis) | +| [Ball Fall Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Fall_Game) | [Pinball](https://github.com/kunjgit/GameZone/tree/main/Games/Pinball) | [Duck_Hunting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Duck_Hunting_Game) | [Color Turner](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Turner) | [Catch the Bunny](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_the_Bunny) | +| [Catch me game](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_me_game) | [Blank Detective](https://github.com/kunjgit/GameZone/tree/main/Games/Blanks_Detective) | [Falling Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Blocks) | [Movie Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Movie_Guessing_Game) | [Wildcard Bonanza](https://github.com/kunjgit/GameZone/tree/main/Games/Wildcard_Bonanza) | +| [The Last Spartan](https://github.com/kunjgit/GameZone/tree/main/Games/The_Last_Spartan) | [Space Exploration](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Exploration) | [Bow Arrow Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_Arrow) | [I Want To Google The Game](https://github.com/kunjgit/GameZone/tree/main/Games/I_Want_To_Google_The_Game) | [Space Gun](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Gun) | +| [Space Huggers](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Huggers) | [Spaceship Escort](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceship_Escort) | [Space Defence](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Defence) | [Glitch Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Glitch_Buster) | [3D Box Game](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Box_Game) | +| [Escape](https://github.com/kunjgit/GameZone/tree/main/Games/Escape) | [Retro Dungeon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Retro_Dungeon_Puzzle) | [Immunity Collapse](https://github.com/kunjgit/GameZone/tree/main/Games/Immunity_Collapse) | [Hunt Your Card](https://github.com/kunjgit/GameZone/tree/main/Games/Hunt_Your_Card) | [Tenacity](https://github.com/kunjgit/GameZone/tree/main/Games/Tenacity) | +| [Emoji Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Puzzle_Game) | [Back To Space](https://github.com/kunjgit/GameZone/tree/main/Games/Back_To_Space) | [Snooze](https://github.com/kunjgit/GameZone/tree/main/Games/Snooze) | [Galaxy Rider](https://github.com/kunjgit/GameZone/tree/main/Games/Galaxy_Rider) | [Squared Lines](https://github.com/kunjgit/GameZone/tree/main/Games/Squared_Lines) | +| [Space War](https://github.com/kunjgit/GameZone/tree/main/Games/Space_War) | [Sciara of Colors](https://github.com/kunjgit/GameZone/tree/main/Games/Sciara_Of_Colors) | [JunoJs](https://github.com/kunjgit/GameZone/tree/main/Games/JunoJs) | [Fall Down](https://github.com/kunjgit/GameZone/tree/main/Games/Fall_Down) | [Cat Goric](https://github.com/kunjgit/GameZone/tree/main/Games/Cat_Goric) | +| [Cable Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Cable_Maze) | [Spaceducts](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceducts) | [Zurbo](https://github.com/kunjgit/GameZone/tree/main/Games/Zurbo) | [Blast Zone](https://github.com/kunjgit/GameZone/tree/main/Games/BlastZone) | [Free Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Free_Bird) | +| [Maximise Boxes](https://github.com/kunjgit/GameZone/tree/main/Games/MaximiseBoxes) | [Slide Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Slide_Puzzle) | [Diamond Run](https://github.com/kunjgit/GameZone/tree/main/Games/Diamond_Run) | [Everyones Sky](https://github.com/kunjgit/GameZone/tree/main/Games/Everyones_Sky) | [Line Of Fire](https://github.com/kunjgit/GameZone/tree/main/Games/Line_Of_Fire) | +| [1024 Moves](https://github.com/kunjgit/GameZone/tree/main/Games/1024_Moves) | [Save The Forest](https://github.com/kunjgit/GameZone/tree/main/Games/Save_The_Forest) | [Dragon World Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_World_Game) | [DuckHunt](https://github.com/kunjgit/GameZone/tree/main/Games/DuckHunt) | [Plankman](https://github.com/kunjgit/GameZone/tree/main/Games/Plankman) | +| [Hold The Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Hold_The_Cloud) | [Labyrinth](https://github.com/kunjgit/GameZone/tree/main/Games/Labyrinth) | [RIP](https://github.com/kunjgit/GameZone/tree/main/Games/RIP) | [Risky Nav](https://github.com/kunjgit/GameZone/tree/main/Games/Risky_Nav) | [Pixels From Space](https://github.com/kunjgit/GameZone/tree/main/Games/Pixels_From_Space) | +| [Poker_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Poker_Dice) | [Unlock_The_Lock](https://github.com/kunjgit/GameZone/tree/main/Games/Unlock_The_Lock) | [Gnomedom](https://github.com/kunjgit/GameZone/tree/main/Games/Gnomedom) | [Lost In The Maze 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Lost_In_The_Maze_3D) | [PONG BALL](https://github.com/kunjgit/GameZone/tree/main/Games/Pong_Ball) | +| [Projectile Motion Game](https://github.com/kunjgit/GameZone/tree/main/Games/Projectile_Motion_Game) | [Swift](https://github.com/kunjgit/GameZone/tree/main/Games/Swift) | [Spacepi](https://github.com/kunjgit/GameZone/tree/main/Games/Spacepi) | [Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Destroyer) | [Terror_Seventy](https://github.com/kunjgit/GameZone/tree/main/Games/Terror_Seventy) | +| [Humming](https://github.com/kunjgit/GameZone/tree/main/Games/Humming) | [Word Search Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Word_search_puzzle) | [Ballarena](https://github.com/kunjgit/GameZone/tree/main/Games/Ballarena) | [Beyonder](https://github.com/kunjgit/GameZone/tree/main/Games/Beyonder) | [Shpere](https://github.com/kunjgit/GameZone/tree/main/Games/Shpere) | +| [Short Circuit](https://github.com/kunjgit/GameZone/tree/main/Games/Short_Circuit) | [Johnny Smiter](https://github.com/kunjgit/GameZone/tree/main/Games/Johnny_Smiter) | [Rectangular](https://github.com/kunjgit/GameZone/tree/main/Games/Rectangular) | [Canon Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Canon_Defense) | [Trashem](https://github.com/kunjgit/GameZone/tree/main/Games/Trashem) | +| [Chess](https://github.com/SoarinSkySagar/GameZone-GSSoC23/tree/main/Games/CHESS) | [Get The Pigeon](https://github.com/kunjgit/GameZone/tree/main/Games/Get_The_Pigeon) | [Uxu](https://github.com/kunjgit/GameZone/tree/main/Games/Uxu) | [Soul Jumper](https://github.com/kunjgit/GameZone/tree/main/Games/Soul_Jumper) | [Infernal Throne](https://github.com/kunjgit/GameZone/tree/main/Games/Infernal_Throne) | +| [Dead Again](https://github.com/kunjgit/GameZone/tree/main/Games/Dead_Again) | [Norman The Necromancer](https://github.com/kunjgit/GameZone/tree/main/Games/Norman_The_Necromancer) | [Shape Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Shape_Blocks) | [Goal_Rush](https://github.com/kunjgit/GameZone/tree/main/Games/Goal_Rush) | [Charon Jr](https://github.com/kunjgit/GameZone/tree/main/Games/Charon_Jr) | +| [Color Shifter](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Shifter) | [Oh, flip](https://github.com/kunjgit/GameZone/tree/main/Games/oh_flip) | [Snake Feeder Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Feeder_Game) | [LOSSST](https://github.com/kunjgit/GameZone/tree/main/Games/LOSSST) | [HangMan](https://github.com/kunjgit/GameZone/tree/main/Games/HangMan) | +| [Bad_Luck_Brian](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Luck_Brian) | [Bad_Depot](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Depot) | [Achluophobia](https://github.com/kunjgit/GameZone/tree/main/Games/Achluophobia) | [Timber_Terry](https://github.com/kunjgit/GameZone/tree/main/Games/Timber_Terry) | [Earth_Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Destroyer) | +| [Lonely Phantom](https://github.com/kunjgit/GameZone/tree/main/Games/Lonely_Phantom) | [Ghost Surf](https://github.com/kunjgit/GameZone/tree/main/Games/Ghost_Surf) | [Sucker](https://github.com/kunjgit/GameZone/tree/main/Games/Sucker) | [Sorades](https://github.com/kunjgit/GameZone/tree/main/Games/Sorades) | [Thirteen](https://github.com/kunjgit/GameZone/tree/main/Games/Thirteen) | +| [The Raising Fighting Spirits](https://github.com/kunjgit/GameZone/tree/main/Games/The_Raising_Fighting_Spirits) | [Green Mahjong](https://github.com/kunjgit/GameZone/tree/main/Games/Green_Mahjong) | [Drag And Drop Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Drag_And_Drop_Puzzle) | [Music Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Music_Guess_Game) | [Tower Of Hanoi](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Of_Hanoi) | +| [Mastermind_Mania](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind_Mania) | [Ludo_4_Player](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_4_Player) | [AirBalloon](https://github.com/kunjgit/GameZone/tree/main/Games/AirBalloon) | [Space Invaders](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Invaders) | [Cut the Rope](https://github.com/kunjgit/GameZone/tree/main/Games/Cut_the_rope) | +| [Caesar&Cipher](https://github.com/kunjgit/GameZone/tree/main/Games/Caesar_Cipher) | [Monster_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Monster_Maker) | [Stolen Sword](https://github.com/kunjgit/GameZone/tree/main/Games/Stolen_Sword) | [Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind) | [Highway 404](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_404) | +| [BullseyeGame](https://github.com/kunjgit/GameZone/tree/main/Games/BullseyeGame) | [Crossword Game](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Game) | [Guess the Correct Logo](https://github.com/shruti-2412/GameZone/tree/main/Games/Guess_The_Correct_Logo) | [Painting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Painting_Game) | [Platform_game_engine](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_game_engine) | +| [Doppelkopf](https://github.com/kunjgit/GameZone/tree/main/Games/Doppelkopf) | [quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/quiz_game) | [Island Survival](https://github.com/kunjgit/GameZone/tree/main/Games/Island_Survival) | [Linkup Game](https://github.com/kunjgit/GameZone/tree/main/Games/linkup) | [Trivia_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Trivia_Card) | +| [Insect Catch Game](https://github.com/kunjgit/GameZone/tree/main/Games/Insect_Catch_Game) | [Carnival_game](https://github.com/kunjgit/GameZone/tree/main/Games/Carnival_game) | [Make Me Laugh](https://github.com/kunjgit/GameZone/tree/main/Games/Make_Me_Laugh) | [Avoider_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Avoider_Game) | [Dungeon_Crawler](https://github.com/kunjgit/GameZone/tree/main/Games/Dungeon_Crawler) | +| [snake_water_gun](https://github.com/kunjgit/GameZone/tree/main/Games/snake_water_gun) | [Run and Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Run_and_Jump) | [AI CHESS Game](https://github.com/kunjgit/GameZone/tree/main/Games/AI_CHESS_Game) | [Fruit_Catching](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching) | [Bulls eye](https://github.com/kunjgit/GameZone/tree/main/Games/Bulls_eye) | +| [Crystals_Collecter](https://github.com/kunjgit/GameZone/tree/main/Games/Crystals_Collecter) | [Dots and Boxes Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dots_and_Boxes_Game) | [Infinite Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Infinite_Runner_Game) | [Mario_Matching](https://github.com/kunjgit/GameZone/tree/main/Games/mario_matching_game) | [Hand_Cricket](https://github.com/kunjgit/GameZone/tree/main/Games/Hand_Cricket) | +| [Crossword_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Puzzle) | [Pixel_Painter](https://github.com/kunjgit/GameZone/tree/main/Games/Pixel_Painter) | [Riddle_Room](https://github.com/kunjgit/GameZone/tree/main/Games/Riddle_Room) | [ArmorAlley](https://github.com/kunjgit/GameZone/tree/main/Games/ArmorAlley) | [Color_switcher](https://github.com/kunjgit/GameZone/tree/main/Games/Color_switcher) | +| [Maze of Cables](https://github.com/VSatwika/GameZonefork/tree/Maze_of_Cables/Games/Maze_of_Cables) | [Escape Room](https://github.com/kunjgit/GameZone/tree/main/Games/Escape_room) | [Super_mario_run](https://github.com/kunjgit/GameZone/tree/main/Games/Super_mario_run) | [Doodle_Draw](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Draw) | [Arcade_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arcade_Game) | +| [Slice Storm](https://github.com/VSatwika/GameZonefork/tree/Slice_Storm/Games/Slice_Storm) | [CodePen_SImulator](https://github.com/kunjgit/GameZone/tree/main/Games/CodePen_Simulator) | [Piano_Tiles](https://github.com/kunjgit/GameZone/tree/main/Games/PianoTiles_Game) | [CareTaker](https://github.com/kunjgit/GameZone/tree/main/Games/CareTaker) | [UNO](https://github.com/kunjgit/GameZone/tree/main/Games/UNO) | +| [Remeber the color](https://github.com/kunjgit/GameZone/tree/main/Games/Remember_the_color) | [Guess The Random Shape](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Random_Shape) | [Save Doraemon](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Doraemon) | [Animal_Match_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Animal_Match_Game) | [Hextris](https://github.com/kunjgit/GameZone/tree/main/Games/Hextris) | +| [MrFakeGame](https://github.com/kunjgit/GameZone/tree/main/Games/MrFakeGame) | [Checkers](https://github.com/kunjgit/GameZone/tree/main/Games/Checkers) | [Roulette](https://github.com/kunjgit/GameZone/tree/main/Games/Roulette) | [Aero Acrobat](https://github.com/kunjgit/GameZone/tree/main/Games/Aero_Acrobat) | [Adventure_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Adventure_Game) | +| [Pumpkin_Pursuit](https://github.com/kunjgit/GameZone/tree/main/Games/Pumpkin_Pursuit) | [Corona Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Corona_Shooter) | [Pokemon Ball Finder](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Ball_Finder) | [Basketball](https://github.com/kunjgit/GameZone/tree/main/Games/Basketball) | [Wault_master](https://github.com/kunjgit/GameZone/tree/main/Games/Wault_master) | +| [Reaction TIme](https://github.com/kunjgit/GameZone/tree/main/Games/Reaction_Time) | [Flag Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flag_Guess_Game) | [Cross_The_Road](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_Road) | [Highway Race - Barrel Dodge](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_Race) | [Bit_Maze_Platformer_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Bit_Maze_Platformer_Maze) | +| [Math Game](https://github.com/kunjgit/GameZone/tree/main/Games/Math_Game) | [Space Drifter](https://github.com/kunjgit/GameZone/tree/main/Games/space_drifter) | [Observe the Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Observe%20the%20Cloud) | [Cosmic_Coin_Blaster](https://github.com/kunjgit/GameZone/tree/main/Games/Cosmic_Coin_Blaster) | [Circus Charly](https://github.com/kunjgit/GameZone/tree/main/Games/Circus_Charly) | +| [Pikachu_Volleyball](https://github.com/kunjgit/GameZone/tree/main/Games/Pikachu_Volleyball) | [Trex_Run](https://github.com/akankshachanana1/GameZone/tree/Added/Games/Trex_Run) | [Crack_The_Code](https://github.com/kunjgit/GameZone/tree/main/Games/Crack_The_Code) | [Skeleathon](https://github.com/kunjgit/GameZone/tree/main/Games/Skeleathon) | [Shadow_PokeGuess](https://github.com/kunjgit/GameZone/tree/main/Games/Shadow_PokeGuess) | +| [Brain Color Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Color_Mastermind) | [Lizard Spock Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lizard_Spock_Game) | [Angry Boars](https://github.com/kunjgit/GameZone/tree/main/Games/Angry_Boars) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet_Learning_Game) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | +| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/main/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Alphabet_Learning_Game) | +| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Death by Hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Death_by_Hamster) | +| [Tenzies](https://github.com/kunjgit/GameZone/tree/main/Games/Tenzies) | [Target_Torrent](https://github.com/kunjgit/GameZone/tree/main/Games/Target_Torrent) | [Reversi](https://github.com/kunjgit/GameZone/tree/main/Games/Reversi) | [reaction_teaser](https://github.com/kunjgit/GameZone/pull/2134/files) | [Scribble](https://github.com/kunjgit/GameZone/tree/main/Games/Scribble) | +| [Brain Burst Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Burst_Game) | [StickTheSticker](https://github.com/kunjgit/GameZone/tree/main/Games/StickTheSticker) | [Meme_Battle_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Meme_Battle_Game) | [Match_Color_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Match_Color_Game) | [Bow_And_Arrow](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_And_Arrow) | +| [Beyblade](https://github.com/kunjgit/GameZone/tree/main/Games/Beyblade) | [The labyrinth of death](https://github.com/sahaycodes/GameZone/tree/meme/Games/The_labyrinth_of_death) | [2D BreakOut](https://github.com/kunjgit/GameZone/tree/main/Games/2D_Breakout) | [Battleship](https://github.com/kunjgit/GameZone/tree/main/Games/Battleship) | [Baseball](https://github.com/kunjgit/GameZone/tree/main/Games/Baseball) | +| [Save Princess](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Princess) | [RoadFighter](https://github.com/kunjgit/GameZone/tree/main/Games/RoadFighter) | [Guitar Game](https://github.com/kunjgit/GameZone/tree/main/Games/Guitar_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire) | [Lady Tiger Hunter](https://github.com/kunjgit/GameZone/tree/main/Games/Lady_Tiger_Hunter) | +| [Stone Paper Scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Stone_paper_scissor) | [Flashlight_Pointer_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flashlight_Pointer_Game) | [Pig game](https://github.com/KanchanBora/GameZone/tree/main/Games/Pig_game) | [Asteroids 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Asteroids_3D) | [Lamb Lane](https://github.com/sahaycodes/GameZone/tree/meme/Games/Lamb_Lane) | +| [Dinoffline](https://github.com/kunjgit/GameZone/tree/main/Games/Dinoffline) | [Maths Sprint Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maths_Sprint_Game) | [Etch a Sketch](https://github.com/kunjgit/GameZone/tree/main/Games/Etch_a_Sketch) | [QuizzApp](https://github.com/kunjgit/GameZone/tree/main/Games/QuizzApp) | [Chess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game) | +| [Which Color](https://github.com/sahaycodes/GameZone/tree/main/Games/Which_Color) | [Snail_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Snail_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire_up) | [Slime Attack](https://github.com/apu52/GameZone/tree/Slime-Attack-game/Games/Slime_attack_game) | [Star_Trek_Trivia](https://github.com/kunjgit/GameZone/tree/starTrek-trivia/Games/Star_Trek_Trivia) | +| [Pokemon_Card_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Card_Game) | [Digit Dilemma](https://github.com/kunjgit/GameZone/tree/main/Games/Digit_Dilemma) | [Tennis](https://github.com/kunjgit/GameZone/tree/main/Games/Tennis) | [Illusion](https://github.com/kunjgit/GameZone/tree/main/Games/Illusion) | [Block Buster](https://github.com/sahaycodes/GameZone/tree/meme/Games/Block_Buster) | +| [Guess_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Ball) | [Doremon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Doremon_Puzzle) | [Guess The Celebrity](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Celeb) | [Rock_Paper_Scissors_Lizard_Spock](https://github.com/kunjgit/GameZone/tree/main/Rock_Paper_Scissors_Lizard_Spock) | [Elemental Riddles](https://github.com/kunjgit/GameZone/tree/main/Elemental_Riddles) | +| [Falling_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Ball) | [Hit Target](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_Target) | [Archery](https://github.com/kunjgit/GameZone/tree/main/Games/Archery) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | +| [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | +| [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [Code Cracker](https://github.com/kunjgit/GameZone/tree/main/Code_Cracker) | [Know Your Country](https://github.com/kunjgit/GameZone/tree/main/Games/Know_Your_Country) | [Musical_Floor](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Floor) | [Sky_Dodge](https://github.com/kunjgit/GameZone/tree/main/Sky_Dodge) | +| [Swap Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Swap-Card-Game) | [Memorization_card](https://github.com/kunjgit/GameZone/tree/main/Games/Memorization_card) | [Smashing_Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Smashing_Blocks) | [Response_Reaction](https://github.com/kunjgit/GameZone/tree/main/Games/Response_Reaction) | [Truth and Dare](https://github.com/kunjgit/GameZone/tree/main/Games/Truth_And_Dare) | +| [Rotating_Elements](https://github.com/tanujbordikar/GameZone/tree/Rotating_Elements) | [Chopsticks](https://github.com/kunjgit/GameZone/tree/main/Games/Chopsticks) | [Anime Clicker](https://github.com/kunjgit/GameZone/tree/main/Games/Anime_Clicker) | [3D Snake](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Snake) | [Rocket_Showdown](https://github.com/tanujbordikar/GameZone/tree/Rocket_Showdown) | +| [Find Extra Cube](https://github.com/kunjgit/GameZone/tree/main/Games/Find_Extra_Cube) | [PathPlex](https://github.com/kunjgit/GameZone/tree/main/Games/Pathplex) | [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [CSS Crossword](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Crossword) | +| [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [Flip Coin](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Coin) | [Witty Word Quest](https://github.com/kunjgit/GameZone/tree/main/Games/witty_word_quest) | [Typing Game](https://github.com/Ishan-77/GameZone/tree/main/Games/Typing_Game) | +| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | +| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Color_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Blast) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). | +| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | | | | [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | | | [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) @@ -245,50 +243,50 @@ This repository also provides one such platforms where contributers come over an | [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | | [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | | [Automated_rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/automated_rock_paper_scissor) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Astronaut_runner](https://github.com/tanishkaa08/GameZone/tree/main/Games/Astronaunt_runner) | -| [16_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/16_Puzzle) | -| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | -| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | -| [escaperoom](https://github.com/kunjgit/GameZone/tree/main/Games/escaperoom) | -| [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) | -| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | -| [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | -| [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | -| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | -| [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | -| [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | -| [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | -| [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | -| [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | -| [Candy_Crush_Saga](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush_Saga) | -| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | -| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | -| [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | - [Candy_Crush_Saga](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush_Saga) | - [Colour_Generator_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Generator_Game) | -| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | -| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | -[Mancala_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Mancala_Game) | -|[2048_win](https://github.com/kunjgit/GameZone/tree/main/Games/2048_win) | -| [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Chrome_Dino_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dino_Game) | -| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | -| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | -| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | -| [Shrek_Vs_Wild](https://github.com/kunjgit/GameZone/tree/main/Games/Shrek_Vs_Wild) | -| [Balloon_Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Balloon_Buster) | -| [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | -| [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | -| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | | -| [path_finder](https://github.com/kunjgit/GameZone/tree/main/Games/path_finder) | -| [Shrek_Vs_Wild](https://github.com/kunjgit/GameZone/tree/main/Games/Shrek_Vs_Wild) | -| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | -| [Guess_num](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_num) | -| [QuickFingers](https://github.com/kunjgit/GameZone/tree/main/Games/QuickFingers) | -| [Physics_Quizz](https://github.com/kunjgit/GameZone/tree/main/Games/Physics_Quizz) | -| [Tiny_Fishing](https://github.com/kunjgit/GameZone/tree/main/Games/Tiny_Fishing) | - -| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Astronaut_runner](https://github.com/tanishkaa08/GameZone/tree/main/Games/Astronaunt_runner) | +| [16_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/16_Puzzle) | +| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | +| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | +| [escaperoom](https://github.com/kunjgit/GameZone/tree/main/Games/escaperoom) | +| [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) | +| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | +| [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | +| [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | +| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | +| [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | +| [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | +| [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | +| [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | +| [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | +| [Candy_Crush_Saga](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush_Saga) | +| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | +| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | +| [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | +[Candy_Crush_Saga](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush_Saga) | +[Colour_Generator_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Generator_Game) | +| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | +| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | +[Mancala_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Mancala_Game) | +|[2048_win](https://github.com/kunjgit/GameZone/tree/main/Games/2048_win) | +| [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Chrome_Dino_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dino_Game) | +| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | +| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | +| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | +| [Shrek_Vs_Wild](https://github.com/kunjgit/GameZone/tree/main/Games/Shrek_Vs_Wild) | +| [Balloon_Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Balloon_Buster) | +| [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | +| [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | +| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | | +| [path_finder](https://github.com/kunjgit/GameZone/tree/main/Games/path_finder) | +| [Shrek_Vs_Wild](https://github.com/kunjgit/GameZone/tree/main/Games/Shrek_Vs_Wild) | +| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | +| [Guess_num](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_num) | +| [QuickFingers](https://github.com/kunjgit/GameZone/tree/main/Games/QuickFingers) | +| [Physics_Quizz](https://github.com/kunjgit/GameZone/tree/main/Games/Physics_Quizz) | +| [Tiny_Fishing](https://github.com/kunjgit/GameZone/tree/main/Games/Tiny_Fishing) | + +| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | | [namefate](https://github.com/kunjgit/GameZone/tree/main/Games/namefate) | | [Fruit_Catching_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching_Game) | @@ -313,26 +311,26 @@ This repository also provides one such platforms where contributers come over an | [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | | [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | -| [WordScramble](https://github.com/kunjgit/GameZone/tree/main/Games/wordScramble) - -[Roll_The_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_The_Dice) | -| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | -| [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | [Screen Pet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Screen-Pet-Game) | -| [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | -| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | +| [WordScramble](https://github.com/kunjgit/GameZone/tree/main/Games/wordScramble) + +[Roll_The_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_The_Dice) | +| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | +| [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | [Screen Pet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Screen-Pet-Game) | +| [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | +| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | | [Color The Page](https://github.com/kunjgit/GameZone/tree/main/Games/Color_The_Page)| |[Building Blocks Game](https://github.com/kunjgit/GameZone/tree/main/Games/Building_Block_Game)| |[Cartoon character guessing game](https://github.com/kunjgit/GameZone/tree/main/Games/Cartoon_Character_Guessing_Game)| |[Carrom Board Game](https://github.com/kunjgit/GameZone/tree/main/Games/carrom)| -| [Number_Recall_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Recall_Game) | -| [Hit_the_hamster] (https://github.com/kunjgit/GameZone/tree/main/Games/Hit_the_hamster) | -| [Forest_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Forst_Guardian) | -| [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | -| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | +| [Number_Recall_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Recall_Game) | +| [Hit_the_hamster] (https://github.com/kunjgit/GameZone/tree/main/Games/Hit_the_hamster) | +| [Forest_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Forst_Guardian) | +| [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | +| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | |[Color The Page](https://github.com/kunjgit/GameZone/tree/main/Games/Color_The_Page)| -|[AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | -|[Chess_Game_computer](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game_computer) | -|[Turn_on_the_light](https://github.com/kunjgit/GameZone/tree/main/Games/Turn_on_the_light) | +|[AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | +|[Chess_Game_computer](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game_computer) | +|[Turn_on_the_light](https://github.com/kunjgit/GameZone/tree/main/Games/Turn_on_the_light) | | [Tic-Tac-Toe Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tic-Tac-Toe) | | [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) | |[Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | @@ -426,11 +424,11 @@ Terms and conditions for use, reproduction and distribution are under the [Apach | [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | [escaperoom](https://github.com/kunjgit/GameZone/tree/main/Games/escaperoom) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | | [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | | [Candy_Crush_Saga](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush_Saga) | [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | -| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | +| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | -| [DNA_Sequencer](https://github.com/kunjgit/GameZone/tree/main/Games/DNA_Sequencer) | +| [DNA_Sequencer](https://github.com/kunjgit/GameZone/tree/main/Games/DNA_Sequencer) | | [Boom_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Boom_Blast) | -| [Shadow_Runner](https://github.com/kunjgit/GameZone/tree/main/Games/Shadow_Runner) | +| [Shadow_Runner](https://github.com/kunjgit/GameZone/tree/main/Games/Shadow_Runner) |
@@ -515,10 +513,8 @@ This repository also provides one such platforms where contributers come over an - `[Issue Title]: Your Issue` make sure you just add your issue name - ex .`[New game]: Super Mario` - - Make sure you select the program in which you are participating 🔥 -======= -| Game | Game | Game | Game | Game | - + - # Make sure you select the program in which you are participating 🔥 + | Game | Game | Game | Game | Game | - Wait till you have been assigned the issue - After you have been assigned the issue start working on the code @@ -546,94 +542,94 @@ This repository also provides one such platforms where contributers come over an -| Game | Game | Game | Game | Game | -| ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | --- | -| [Master Typing](https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing) | [Treasure Hunt](https://github.com/Antiquely3059/GameZone/tree/main/Games/Treasure%20Hunt) | [Virtual Pet](https://github.com/Antiquely3059/GameZone/tree/main/Games/Virtual_Pet) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | | -| [Tilting Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Tilting_Maze) | [Simon Game Challenge](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Game_Challenge) | [Snake Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Game) | [Dino Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dino_Runner_Game) | -| [Whack a Mole](https://github.com/kunjgit/GameZone/tree/main/Games/Whack_a_Mole) | [Doraemon Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doraemon_Jump) | [Black Jack](https://github.com/kunjgit/GameZone/tree/main/Games/Black_Jack) | [Memory Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Game) | [Word Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Guessing_Game) | -| [Ludo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_Game) | [Piano Game](https://github.com/kunjgit/GameZone/tree/main/Games/Piano) | [Atari Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Atari_Breakout) | [Dinosaur Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dinosaur_Game) | [Guess The Colour by RGB Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Guessing_Game) | -| [Guess The Number](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Number) | [Race car game](https://github.com/kunjgit/GameZone/tree/main/Games/race_car) | [Aim Training](https://github.com/DP-NOTHING/GameZone/tree/contri/Games/Aim_Training) | [Alien Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Alien_Shooters) | [Fruit Ninja](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Ninja) | -| [Doodle Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Jump) | [Alphabet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet) | [Candy Crush](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush) | [Word Association Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Association_Game) | [Tic Tac Toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe) | -| [Flappy Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flappy_Bird) | [Trivia It](https://hithub.com/kunjgit/GameZone/tree/main/Games/Trivia_It) | [Minesweeper](https://github.com/kunjgit/GameZone/tree/main/Games/Minesweeper) | [Dice ShowDown Game](https://github.com/Himanshu07-debug/GameZone/tree/main/Games/Dice_Showdown_Game) | [Pac Man Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pac_Man_Game) | -| [Brick Breaker Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick_Breaker) | [Magic Square Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_Square) | [Fight Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fight_Game) | [Lighthouse Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lighthouse) | [Lights Out Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lights_Out) | -| [Word Scramble Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Scramble_Game) | [Tetris](https://github.com/kunjgit/GameZone/tree/main/Games/Tetris) | [Interactive Quizzing Application](https://github.com/kunjgit/GameZone/tree/main/Games/Interactive_Quizzing) | [Planet Defense Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Defense) | [Rabbit Rush Game](https://github.com/kunjgit/GameZone/tree/main/Games/Rabbit_Rush) | -| [Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Wordle) | [Roll Race Game](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_Race) | [Menja Game](https://github.com/kunjgit/GameZone/tree/main/Games/Menja) | [Typing Speed Test Game](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test_Game) | [Tile Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tile_Game) | -| [Stick Hero Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stick_Hero_Game) | [Starwars Character Game](https://github.com/kunjgit/GameZone/tree/main/Games/Starwars_Character_Game) | [Traffic Run](https://github.com/kunjgit/GameZone/tree/main/Games/Traffic_Run) | [Love Result Predictor](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Result_Predictor) | [Tower Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Defense) | - -| [Menja_block_breaker](https://github.com/kunjgit/GameZone/tree/main/Games/Menja_block_breaker) | [Quick_Math](https://github.com/AaryanManghnani/GameZone/tree/QuickMath/Games/Quick_Math) | [Yahtzee](https://github.com/kunjgit/GameZone/tree/main/Games/Yahtzee) | - -| [Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bird_game) | [Bubble Blast Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Blast_Game) | [Emoji Charades](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Charades) | [Drum And Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Drum_Kit_Game) | [Rock Paper Scissors](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors) | -| [Frogger](https://github.com/kunjgit/GameZone/tree/main/Games/Frogger) | [!morethan5 ](https://github.com/kunjgit/GameZone/tree/main/Games/Not_morethan5) | [Unruly Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Unruly_Tower) | [Maze Game](https://github.com/kunjgit/GameZone/tree/main/Games/MazeGame) | [Connect4](https://github.com/kunjgit/GameZone/tree/main/Games/Connect4) | -| [Spelling_Bee](https://github.com/kunjgit/GameZone/tree/main/Games/Spelling_Bee) | [2048](https://github.com/kunjgit/GameZone/tree/main/Games/2048) | [Spin the Wheel](https://github.com/kunjgit/GameZone/tree/main/Games/Spin_the_wheel) | [Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Breakout) | [Tower Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Blocks) | -| [Platform Game](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_Game) | [Red Light Green Light](https://github.com/kunjgit/GameZone/tree/main/Games/Red_Light_Green_Light) | [Squash your Enemy](https://github.com/kunjgit/GameZone/tree/main/Games/Squashing_your_Enemy) | [Avax Gods](https://github.com/kunjgit/GameZone/tree/main/Games/Avax_gods) | [Flip Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Card_Game) | -| [Bingo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bingo_Game) | [Fifteen Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fifteen_Puzzle_Game) | [Stack_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stack_Game) | [Block.io_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Block.io) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | -| [Touch_The_Ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Touch_The_Ball) | [Sudoku](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku) | [Mini Golf](https://github.com/kunjgit/GameZone/tree/main/Games/Mini_Golf) | [Rubik's solver](https://github.com/kunjgit/GameZone/tree/main/Games/Rubik's_solver) | [Shoot_The_Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_The_Balloon) | -| [Dont_Die_To_Ghosts](https://github.com/kunjgit/GameZone/tree/main/Games/Dont_Die_To_Ghosts) | [SciFi Alchemy](https://github.com/kunjgit/GameZone/tree/main/Games/SciFi_Alchemy) | [Packabunchas](https://github.com/kunjgit/GameZone/tree/main/Games/Packabunchas) | [Cast and Catch](https://github.com/Sheetal-05/GameZone/tree/main/Games/Cast_and_Catch) | [Track Not Found](https://github.com/kunjgit/GameZone/tree/main/Games/Track_Not_Found) | -| [Love Calculator Game](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Calci) | [Planet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Game) | [Snake Ladder](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Ladder) | [Among Us Game](https://github.com/kunjgit/GameZone/tree/main/Games/Among_Us_Game) | [Pokedex Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokedex) | -| [Pacific Air Battle](https://github.com/kunjgit/GameZone/tree/main/Games/Pacific_Air_Battle) | [Dante](https://github.com/kunjgit/GameZone/tree/main/Games/Dante) | [Ping Pong Multiplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Multiplayer) | [Sonic The Hedgehog](https://github.com/kunjgit/GameZone/tree/main/Games/Sonic_The_Hedgehog) | [World Of Emojis](https://github.com/kunjgit/GameZone/tree/main/Games/World_Of_Emojis) | -| [Ball Fall Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Fall_Game) | [Pinball](https://github.com/kunjgit/GameZone/tree/main/Games/Pinball) | [Duck_Hunting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Duck_Hunting_Game) | [Color Turner](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Turner) | [Catch the Bunny](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_the_Bunny) | -| [Catch me game](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_me_game) | [Blank Detective](https://github.com/kunjgit/GameZone/tree/main/Games/Blanks_Detective) | [Falling Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Blocks) | [Movie Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Movie_Guessing_Game) | [Wildcard Bonanza](https://github.com/kunjgit/GameZone/tree/main/Games/Wildcard_Bonanza) | -| [The Last Spartan](https://github.com/kunjgit/GameZone/tree/main/Games/The_Last_Spartan) | [Space Exploration](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Exploration) | [Bow Arrow Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_Arrow) | [I Want To Google The Game](https://github.com/kunjgit/GameZone/tree/main/Games/I_Want_To_Google_The_Game) | [Space Gun](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Gun) | -| [Space Huggers](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Huggers) | [Spaceship Escort](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceship_Escort) | [Space Defence](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Defence) | [Glitch Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Glitch_Buster) | [3D Box Game](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Box_Game) | -| [Escape](https://github.com/kunjgit/GameZone/tree/main/Games/Escape) | [Retro Dungeon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Retro_Dungeon_Puzzle) | [Immunity Collapse](https://github.com/kunjgit/GameZone/tree/main/Games/Immunity_Collapse) | [Hunt Your Card](https://github.com/kunjgit/GameZone/tree/main/Games/Hunt_Your_Card) | [Tenacity](https://github.com/kunjgit/GameZone/tree/main/Games/Tenacity) | -| [Emoji Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Puzzle_Game) | [Back To Space](https://github.com/kunjgit/GameZone/tree/main/Games/Back_To_Space) | [Snooze](https://github.com/kunjgit/GameZone/tree/main/Games/Snooze) | [Galaxy Rider](https://github.com/kunjgit/GameZone/tree/main/Games/Galaxy_Rider) | [Squared Lines](https://github.com/kunjgit/GameZone/tree/main/Games/Squared_Lines) | -| [Space War](https://github.com/kunjgit/GameZone/tree/main/Games/Space_War) | [Sciara of Colors](https://github.com/kunjgit/GameZone/tree/main/Games/Sciara_Of_Colors) | [JunoJs](https://github.com/kunjgit/GameZone/tree/main/Games/JunoJs) | [Fall Down](https://github.com/kunjgit/GameZone/tree/main/Games/Fall_Down) | [Cat Goric](https://github.com/kunjgit/GameZone/tree/main/Games/Cat_Goric) | -| [Cable Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Cable_Maze) | [Spaceducts](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceducts) | [Zurbo](https://github.com/kunjgit/GameZone/tree/main/Games/Zurbo) | [Blast Zone](https://github.com/kunjgit/GameZone/tree/main/Games/BlastZone) | [Free Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Free_Bird) | -| [Maximise Boxes](https://github.com/kunjgit/GameZone/tree/main/Games/MaximiseBoxes) | [Slide Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Slide_Puzzle) | [Diamond Run](https://github.com/kunjgit/GameZone/tree/main/Games/Diamond_Run) | [Everyones Sky](https://github.com/kunjgit/GameZone/tree/main/Games/Everyones_Sky) | [Line Of Fire](https://github.com/kunjgit/GameZone/tree/main/Games/Line_Of_Fire) | -| [1024 Moves](https://github.com/kunjgit/GameZone/tree/main/Games/1024_Moves) | [Save The Forest](https://github.com/kunjgit/GameZone/tree/main/Games/Save_The_Forest) | [Dragon World Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_World_Game) | [DuckHunt](https://github.com/kunjgit/GameZone/tree/main/Games/DuckHunt) | [Plankman](https://github.com/kunjgit/GameZone/tree/main/Games/Plankman) | -| [Hold The Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Hold_The_Cloud) | [Labyrinth](https://github.com/kunjgit/GameZone/tree/main/Games/Labyrinth) | [RIP](https://github.com/kunjgit/GameZone/tree/main/Games/RIP) | [Risky Nav](https://github.com/kunjgit/GameZone/tree/main/Games/Risky_Nav) | [Pixels From Space](https://github.com/kunjgit/GameZone/tree/main/Games/Pixels_From_Space) | -| [Poker_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Poker_Dice) | [Unlock_The_Lock](https://github.com/kunjgit/GameZone/tree/main/Games/Unlock_The_Lock) | [Gnomedom](https://github.com/kunjgit/GameZone/tree/main/Games/Gnomedom) | [Lost In The Maze 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Lost_In_The_Maze_3D) | [PONG BALL](https://github.com/kunjgit/GameZone/tree/main/Games/Pong_Ball) | -| [Projectile Motion Game](https://github.com/kunjgit/GameZone/tree/main/Games/Projectile_Motion_Game) | [Swift](https://github.com/kunjgit/GameZone/tree/main/Games/Swift) | [Spacepi](https://github.com/kunjgit/GameZone/tree/main/Games/Spacepi) | [Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Destroyer) | [Terror_Seventy](https://github.com/kunjgit/GameZone/tree/main/Games/Terror_Seventy) | -| [Humming](https://github.com/kunjgit/GameZone/tree/main/Games/Humming) | [Word Search Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Word_search_puzzle) | [Ballarena](https://github.com/kunjgit/GameZone/tree/main/Games/Ballarena) | [Beyonder](https://github.com/kunjgit/GameZone/tree/main/Games/Beyonder) | [Shpere](https://github.com/kunjgit/GameZone/tree/main/Games/Shpere) | -| [Short Circuit](https://github.com/kunjgit/GameZone/tree/main/Games/Short_Circuit) | [Johnny Smiter](https://github.com/kunjgit/GameZone/tree/main/Games/Johnny_Smiter) | [Rectangular](https://github.com/kunjgit/GameZone/tree/main/Games/Rectangular) | [Canon Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Canon_Defense) | [Trashem](https://github.com/kunjgit/GameZone/tree/main/Games/Trashem) | -| [Chess](https://github.com/SoarinSkySagar/GameZone-GSSoC23/tree/main/Games/CHESS) | [Get The Pigeon](https://github.com/kunjgit/GameZone/tree/main/Games/Get_The_Pigeon) | [Uxu](https://github.com/kunjgit/GameZone/tree/main/Games/Uxu) | [Soul Jumper](https://github.com/kunjgit/GameZone/tree/main/Games/Soul_Jumper) | [Infernal Throne](https://github.com/kunjgit/GameZone/tree/main/Games/Infernal_Throne) | -| [Dead Again](https://github.com/kunjgit/GameZone/tree/main/Games/Dead_Again) | [Norman The Necromancer](https://github.com/kunjgit/GameZone/tree/main/Games/Norman_The_Necromancer) | [Shape Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Shape_Blocks) | [Goal_Rush](https://github.com/kunjgit/GameZone/tree/main/Games/Goal_Rush) | [Charon Jr](https://github.com/kunjgit/GameZone/tree/main/Games/Charon_Jr) | -| [Color Shifter](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Shifter) | [Oh, flip](https://github.com/kunjgit/GameZone/tree/main/Games/oh_flip) | [Snake Feeder Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Feeder_Game) | [LOSSST](https://github.com/kunjgit/GameZone/tree/main/Games/LOSSST) | [HangMan](https://github.com/kunjgit/GameZone/tree/main/Games/HangMan) | -| [Bad_Luck_Brian](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Luck_Brian) | [Bad_Depot](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Depot) | [Achluophobia](https://github.com/kunjgit/GameZone/tree/main/Games/Achluophobia) | [Timber_Terry](https://github.com/kunjgit/GameZone/tree/main/Games/Timber_Terry) | [Earth_Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Destroyer) | -| [Lonely Phantom](https://github.com/kunjgit/GameZone/tree/main/Games/Lonely_Phantom) | [Ghost Surf](https://github.com/kunjgit/GameZone/tree/main/Games/Ghost_Surf) | [Sucker](https://github.com/kunjgit/GameZone/tree/main/Games/Sucker) | [Sorades](https://github.com/kunjgit/GameZone/tree/main/Games/Sorades) | [Thirteen](https://github.com/kunjgit/GameZone/tree/main/Games/Thirteen) | -| [The Raising Fighting Spirits](https://github.com/kunjgit/GameZone/tree/main/Games/The_Raising_Fighting_Spirits) | [Green Mahjong](https://github.com/kunjgit/GameZone/tree/main/Games/Green_Mahjong) | [Drag And Drop Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Drag_And_Drop_Puzzle) | [Music Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Music_Guess_Game) | [Tower Of Hanoi](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Of_Hanoi) | -| [Mastermind_Mania](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind_Mania) | [Ludo_4_Player](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_4_Player) | [AirBalloon](https://github.com/kunjgit/GameZone/tree/main/Games/AirBalloon) | [Space Invaders](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Invaders) | [Cut the Rope](https://github.com/kunjgit/GameZone/tree/main/Games/Cut_the_rope) | -| [Caesar&Cipher](https://github.com/kunjgit/GameZone/tree/main/Games/Caesar_Cipher) | [Monster_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Monster_Maker) | [Stolen Sword](https://github.com/kunjgit/GameZone/tree/main/Games/Stolen_Sword) | [Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind) | [Highway 404](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_404) | -| [BullseyeGame](https://github.com/kunjgit/GameZone/tree/main/Games/BullseyeGame) | [Crossword Game](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Game) | [Guess the Correct Logo](https://github.com/shruti-2412/GameZone/tree/main/Games/Guess_The_Correct_Logo) | [Painting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Painting_Game) | [Platform_game_engine](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_game_engine) | -| [Kill_The_Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Kill_The_Bird) | -| [Doppelkopf](https://github.com/kunjgit/GameZone/tree/main/Games/Doppelkopf) | [quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/quiz_game) | [Island Survival](https://github.com/kunjgit/GameZone/tree/main/Games/Island_Survival) | [Linkup Game](https://github.com/kunjgit/GameZone/tree/main/Games/linkup) | [Trivia_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Trivia_Card) | -| [Insect Catch Game](https://github.com/kunjgit/GameZone/tree/main/Games/Insect_Catch_Game) | [Carnival_game](https://github.com/kunjgit/GameZone/tree/main/Games/Carnival_game) | [Make Me Laugh](https://github.com/kunjgit/GameZone/tree/main/Games/Make_Me_Laugh) | [Avoider_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Avoider_Game) | [Dungeon_Crawler](https://github.com/kunjgit/GameZone/tree/main/Games/Dungeon_Crawler) | -| [snake_water_gun](https://github.com/kunjgit/GameZone/tree/main/Games/snake_water_gun) | [Run and Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Run_and_Jump) | [AI CHESS Game](https://github.com/kunjgit/GameZone/tree/main/Games/AI_CHESS_Game) | [Fruit_Catching](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching) | [Bulls eye](https://github.com/kunjgit/GameZone/tree/main/Games/Bulls_eye) | -| [Crystals_Collecter](https://github.com/kunjgit/GameZone/tree/main/Games/Crystals_Collecter) | [Dots and Boxes Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dots_and_Boxes_Game) | [Infinite Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Infinite_Runner_Game) | [Mario_Matching](https://github.com/kunjgit/GameZone/tree/main/Games/mario_matching_game) | [Hand_Cricket](https://github.com/kunjgit/GameZone/tree/main/Games/Hand_Cricket) | -| [Crossword_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Puzzle) | [Pixel_Painter](https://github.com/kunjgit/GameZone/tree/main/Games/Pixel_Painter) | [Riddle_Room](https://github.com/kunjgit/GameZone/tree/main/Games/Riddle_Room) | [ArmorAlley](https://github.com/kunjgit/GameZone/tree/main/Games/ArmorAlley) | [Color_switcher](https://github.com/kunjgit/GameZone/tree/main/Games/Color_switcher) | -| [Maze of Cables](https://github.com/VSatwika/GameZonefork/tree/Maze_of_Cables/Games/Maze_of_Cables) | [Escape Room](https://github.com/kunjgit/GameZone/tree/main/Games/Escape_room) | [Super_mario_run](https://github.com/kunjgit/GameZone/tree/main/Games/Super_mario_run) | [Doodle_Draw](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Draw) | [Arcade_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arcade_Game) | -| [Slice Storm](https://github.com/VSatwika/GameZonefork/tree/Slice_Storm/Games/Slice_Storm) | [CodePen_SImulator](https://github.com/kunjgit/GameZone/tree/main/Games/CodePen_Simulator) | [Piano_Tiles](https://github.com/kunjgit/GameZone/tree/main/Games/PianoTiles_Game) | [CareTaker](https://github.com/kunjgit/GameZone/tree/main/Games/CareTaker) | [UNO](https://github.com/kunjgit/GameZone/tree/main/Games/UNO) | -| [Remeber the color](https://github.com/kunjgit/GameZone/tree/main/Games/Remember_the_color) | [Guess The Random Shape](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Random_Shape) | [Save Doraemon](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Doraemon) | [Animal_Match_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Animal_Match_Game) | [Hextris](https://github.com/kunjgit/GameZone/tree/main/Games/Hextris) | -| [MrFakeGame](https://github.com/kunjgit/GameZone/tree/main/Games/MrFakeGame) | [Checkers](https://github.com/kunjgit/GameZone/tree/main/Games/Checkers) | [Roulette](https://github.com/kunjgit/GameZone/tree/main/Games/Roulette) | [Aero Acrobat](https://github.com/kunjgit/GameZone/tree/main/Games/Aero_Acrobat) | [Adventure_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Adventure_Game) | -| [Pumpkin_Pursuit](https://github.com/kunjgit/GameZone/tree/main/Games/Pumpkin_Pursuit) | [Corona Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Corona_Shooter) | [Pokemon Ball Finder](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Ball_Finder) | [Basketball](https://github.com/kunjgit/GameZone/tree/main/Games/Basketball) | [Wault_master](https://github.com/kunjgit/GameZone/tree/main/Games/Wault_master) | -| [Reaction TIme](https://github.com/kunjgit/GameZone/tree/main/Games/Reaction_Time) | [Flag Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flag_Guess_Game) | [Cross_The_Road](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_Road) | [Highway Race - Barrel Dodge](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_Race) | [Bit_Maze_Platformer_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Bit_Maze_Platformer_Maze) | -| [Math Game](https://github.com/kunjgit/GameZone/tree/main/Games/Math_Game) | [Space Drifter](https://github.com/kunjgit/GameZone/tree/main/Games/space_drifter) | [Observe the Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Observe%20the%20Cloud) | [Cosmic_Coin_Blaster](https://github.com/kunjgit/GameZone/tree/main/Games/Cosmic_Coin_Blaster) | [Circus Charly](https://github.com/kunjgit/GameZone/tree/main/Games/Circus_Charly) | -| [Pikachu_Volleyball](https://github.com/kunjgit/GameZone/tree/main/Games/Pikachu_Volleyball) | [Trex_Run](https://github.com/akankshachanana1/GameZone/tree/Added/Games/Trex_Run) | [Crack_The_Code](https://github.com/kunjgit/GameZone/tree/main/Games/Crack_The_Code) | [Skeleathon](https://github.com/kunjgit/GameZone/tree/main/Games/Skeleathon) | [Shadow_PokeGuess](https://github.com/kunjgit/GameZone/tree/main/Games/Shadow_PokeGuess) | -| [Brain Color Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Color_Mastermind) | [Lizard Spock Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lizard_Spock_Game) | [Angry Boars](https://github.com/kunjgit/GameZone/tree/main/Games/Angry_Boars) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet_Learning_Game) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | -| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/main/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Alphabet_Learning_Game) | -| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Death by Hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Death_by_Hamster) | -| [Tenzies](https://github.com/kunjgit/GameZone/tree/main/Games/Tenzies) | [Target_Torrent](https://github.com/kunjgit/GameZone/tree/main/Games/Target_Torrent) | [Reversi](https://github.com/kunjgit/GameZone/tree/main/Games/Reversi) | [reaction_teaser](https://github.com/kunjgit/GameZone/pull/2134/files) | [Scribble](https://github.com/kunjgit/GameZone/tree/main/Games/Scribble) | -| [Brain Burst Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Burst_Game) | [StickTheSticker](https://github.com/kunjgit/GameZone/tree/main/Games/StickTheSticker) | [Meme_Battle_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Meme_Battle_Game) | [Match_Color_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Match_Color_Game) | [Bow_And_Arrow](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_And_Arrow) | -| [Beyblade](https://github.com/kunjgit/GameZone/tree/main/Games/Beyblade) | [The labyrinth of death](https://github.com/sahaycodes/GameZone/tree/meme/Games/The_labyrinth_of_death) | [2D BreakOut](https://github.com/kunjgit/GameZone/tree/main/Games/2D_Breakout) | [Battleship](https://github.com/kunjgit/GameZone/tree/main/Games/Battleship) | [Baseball](https://github.com/kunjgit/GameZone/tree/main/Games/Baseball) | -| [Save Princess](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Princess) | [RoadFighter](https://github.com/kunjgit/GameZone/tree/main/Games/RoadFighter) | [Guitar Game](https://github.com/kunjgit/GameZone/tree/main/Games/Guitar_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire) | [Lady Tiger Hunter](https://github.com/kunjgit/GameZone/tree/main/Games/Lady_Tiger_Hunter) | -| [Stone Paper Scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Stone_paper_scissor) | [Flashlight_Pointer_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flashlight_Pointer_Game) | [Pig game](https://github.com/KanchanBora/GameZone/tree/main/Games/Pig_game) | [Asteroids 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Asteroids_3D) | [Lamb Lane](https://github.com/sahaycodes/GameZone/tree/meme/Games/Lamb_Lane) | -| [Dinoffline](https://github.com/kunjgit/GameZone/tree/main/Games/Dinoffline) | [Maths Sprint Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maths_Sprint_Game) | [Etch a Sketch](https://github.com/kunjgit/GameZone/tree/main/Games/Etch_a_Sketch) | [QuizzApp](https://github.com/kunjgit/GameZone/tree/main/Games/QuizzApp) | [Chess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game) | -| [Which Color](https://github.com/sahaycodes/GameZone/tree/main/Games/Which_Color) | [Snail_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Snail_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire_up) | [Slime Attack](https://github.com/apu52/GameZone/tree/Slime-Attack-game/Games/Slime_attack_game) | [Star_Trek_Trivia](https://github.com/kunjgit/GameZone/tree/starTrek-trivia/Games/Star_Trek_Trivia) | -| [Pokemon_Card_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Card_Game) | [Digit Dilemma](https://github.com/kunjgit/GameZone/tree/main/Games/Digit_Dilemma) | [Tennis](https://github.com/kunjgit/GameZone/tree/main/Games/Tennis) | [Illusion](https://github.com/kunjgit/GameZone/tree/main/Games/Illusion) | [Block Buster](https://github.com/sahaycodes/GameZone/tree/meme/Games/Block_Buster) | -| [Guess_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Ball) | [Doremon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Doremon_Puzzle) | [Guess The Celebrity](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Celeb) | [Rock_Paper_Scissors_Lizard_Spock](https://github.com/kunjgit/GameZone/tree/main/Rock_Paper_Scissors_Lizard_Spock) | [Elemental Riddles](https://github.com/kunjgit/GameZone/tree/main/Elemental_Riddles) | -| [Falling_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Ball) | [Hit Target](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_Target) | [Archery](https://github.com/kunjgit/GameZone/tree/main/Games/Archery) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | -| [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | -| [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [Code Cracker](https://github.com/kunjgit/GameZone/tree/main/Code_Cracker) | [Know Your Country](https://github.com/kunjgit/GameZone/tree/main/Games/Know_Your_Country) | [Musical_Floor](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Floor) | [Sky_Dodge](https://github.com/kunjgit/GameZone/tree/main/Sky_Dodge) | -| [Swap Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Swap-Card-Game) | [Memorization_card](https://github.com/kunjgit/GameZone/tree/main/Games/Memorization_card) | [Smashing_Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Smashing_Blocks) | [Response_Reaction](https://github.com/kunjgit/GameZone/tree/main/Games/Response_Reaction) | [Truth and Dare](https://github.com/kunjgit/GameZone/tree/main/Games/Truth_And_Dare) | -| [Rotating_Elements](https://github.com/tanujbordikar/GameZone/tree/Rotating_Elements) | [Chopsticks](https://github.com/kunjgit/GameZone/tree/main/Games/Chopsticks) | [Anime Clicker](https://github.com/kunjgit/GameZone/tree/main/Games/Anime_Clicker) | [3D Snake](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Snake) | [Rocket_Showdown](https://github.com/tanujbordikar/GameZone/tree/Rocket_Showdown) | -| [Find Extra Cube](https://github.com/kunjgit/GameZone/tree/main/Games/Find_Extra_Cube) | [PathPlex](https://github.com/kunjgit/GameZone/tree/main/Games/Pathplex) | [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [CSS Crossword](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Crossword) | -| [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [Flip Coin](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Coin) | [Witty Word Quest](https://github.com/kunjgit/GameZone/tree/main/Games/witty_word_quest) | [Typing Game](https://github.com/Ishan-77/GameZone/tree/main/Games/Typing_Game) | -| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | -| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Color_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Blast) | -| [Wordling](https://github.com/kunjgit/GameZone/tree/main/Games/Wordling) +| Game | Game | Game | Game | Game | +| -------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | --- | +| [Master Typing](https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing) | [Treasure Hunt](https://github.com/Antiquely3059/GameZone/tree/main/Games/Treasure%20Hunt) | [Virtual Pet](https://github.com/Antiquely3059/GameZone/tree/main/Games/Virtual_Pet) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | | +| [Tilting Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Tilting_Maze) | [Simon Game Challenge](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Game_Challenge) | [Snake Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Game) | [Dino Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dino_Runner_Game) | +| [Whack a Mole](https://github.com/kunjgit/GameZone/tree/main/Games/Whack_a_Mole) | [Doraemon Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doraemon_Jump) | [Black Jack](https://github.com/kunjgit/GameZone/tree/main/Games/Black_Jack) | [Memory Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Game) | [Word Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Guessing_Game) | +| [Ludo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_Game) | [Piano Game](https://github.com/kunjgit/GameZone/tree/main/Games/Piano) | [Atari Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Atari_Breakout) | [Dinosaur Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dinosaur_Game) | [Guess The Colour by RGB Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Guessing_Game) | +| [Guess The Number](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Number) | [Race car game](https://github.com/kunjgit/GameZone/tree/main/Games/race_car) | [Aim Training](https://github.com/DP-NOTHING/GameZone/tree/contri/Games/Aim_Training) | [Alien Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Alien_Shooters) | [Fruit Ninja](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Ninja) | +| [Doodle Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Jump) | [Alphabet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet) | [Candy Crush](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush) | [Word Association Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Association_Game) | [Tic Tac Toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe) | +| [Flappy Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flappy_Bird) | [Trivia It](https://hithub.com/kunjgit/GameZone/tree/main/Games/Trivia_It) | [Minesweeper](https://github.com/kunjgit/GameZone/tree/main/Games/Minesweeper) | [Dice ShowDown Game](https://github.com/Himanshu07-debug/GameZone/tree/main/Games/Dice_Showdown_Game) | [Pac Man Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pac_Man_Game) | +| [Brick Breaker Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick_Breaker) | [Magic Square Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_Square) | [Fight Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fight_Game) | [Lighthouse Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lighthouse) | [Lights Out Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lights_Out) | +| [Word Scramble Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Scramble_Game) | [Tetris](https://github.com/kunjgit/GameZone/tree/main/Games/Tetris) | [Interactive Quizzing Application](https://github.com/kunjgit/GameZone/tree/main/Games/Interactive_Quizzing) | [Planet Defense Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Defense) | [Rabbit Rush Game](https://github.com/kunjgit/GameZone/tree/main/Games/Rabbit_Rush) | +| [Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Wordle) | [Roll Race Game](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_Race) | [Menja Game](https://github.com/kunjgit/GameZone/tree/main/Games/Menja) | [Typing Speed Test Game](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test_Game) | [Tile Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tile_Game) | +| [Stick Hero Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stick_Hero_Game) | [Starwars Character Game](https://github.com/kunjgit/GameZone/tree/main/Games/Starwars_Character_Game) | [Traffic Run](https://github.com/kunjgit/GameZone/tree/main/Games/Traffic_Run) | [Love Result Predictor](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Result_Predictor) | [Tower Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Defense) | + +| [Menja_block_breaker](https://github.com/kunjgit/GameZone/tree/main/Games/Menja_block_breaker) | [Quick_Math](https://github.com/AaryanManghnani/GameZone/tree/QuickMath/Games/Quick_Math) | [Yahtzee](https://github.com/kunjgit/GameZone/tree/main/Games/Yahtzee) | + +| [Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bird_game) | [Bubble Blast Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Blast_Game) | [Emoji Charades](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Charades) | [Drum And Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Drum_Kit_Game) | [Rock Paper Scissors](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors) | +| [Frogger](https://github.com/kunjgit/GameZone/tree/main/Games/Frogger) | [!morethan5 ](https://github.com/kunjgit/GameZone/tree/main/Games/Not_morethan5) | [Unruly Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Unruly_Tower) | [Maze Game](https://github.com/kunjgit/GameZone/tree/main/Games/MazeGame) | [Connect4](https://github.com/kunjgit/GameZone/tree/main/Games/Connect4) | +| [Spelling_Bee](https://github.com/kunjgit/GameZone/tree/main/Games/Spelling_Bee) | [2048](https://github.com/kunjgit/GameZone/tree/main/Games/2048) | [Spin the Wheel](https://github.com/kunjgit/GameZone/tree/main/Games/Spin_the_wheel) | [Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Breakout) | [Tower Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Blocks) | +| [Platform Game](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_Game) | [Red Light Green Light](https://github.com/kunjgit/GameZone/tree/main/Games/Red_Light_Green_Light) | [Squash your Enemy](https://github.com/kunjgit/GameZone/tree/main/Games/Squashing_your_Enemy) | [Avax Gods](https://github.com/kunjgit/GameZone/tree/main/Games/Avax_gods) | [Flip Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Card_Game) | +| [Bingo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bingo_Game) | [Fifteen Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fifteen_Puzzle_Game) | [Stack_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stack_Game) | [Block.io_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Block.io) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | +| [Touch_The_Ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Touch_The_Ball) | [Sudoku](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku) | [Mini Golf](https://github.com/kunjgit/GameZone/tree/main/Games/Mini_Golf) | [Rubik's solver](https://github.com/kunjgit/GameZone/tree/main/Games/Rubik's_solver) | [Shoot_The_Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_The_Balloon) | +| [Dont_Die_To_Ghosts](https://github.com/kunjgit/GameZone/tree/main/Games/Dont_Die_To_Ghosts) | [SciFi Alchemy](https://github.com/kunjgit/GameZone/tree/main/Games/SciFi_Alchemy) | [Packabunchas](https://github.com/kunjgit/GameZone/tree/main/Games/Packabunchas) | [Cast and Catch](https://github.com/Sheetal-05/GameZone/tree/main/Games/Cast_and_Catch) | [Track Not Found](https://github.com/kunjgit/GameZone/tree/main/Games/Track_Not_Found) | +| [Love Calculator Game](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Calci) | [Planet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Game) | [Snake Ladder](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Ladder) | [Among Us Game](https://github.com/kunjgit/GameZone/tree/main/Games/Among_Us_Game) | [Pokedex Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokedex) | +| [Pacific Air Battle](https://github.com/kunjgit/GameZone/tree/main/Games/Pacific_Air_Battle) | [Dante](https://github.com/kunjgit/GameZone/tree/main/Games/Dante) | [Ping Pong Multiplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Multiplayer) | [Sonic The Hedgehog](https://github.com/kunjgit/GameZone/tree/main/Games/Sonic_The_Hedgehog) | [World Of Emojis](https://github.com/kunjgit/GameZone/tree/main/Games/World_Of_Emojis) | +| [Ball Fall Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Fall_Game) | [Pinball](https://github.com/kunjgit/GameZone/tree/main/Games/Pinball) | [Duck_Hunting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Duck_Hunting_Game) | [Color Turner](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Turner) | [Catch the Bunny](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_the_Bunny) | +| [Catch me game](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_me_game) | [Blank Detective](https://github.com/kunjgit/GameZone/tree/main/Games/Blanks_Detective) | [Falling Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Blocks) | [Movie Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Movie_Guessing_Game) | [Wildcard Bonanza](https://github.com/kunjgit/GameZone/tree/main/Games/Wildcard_Bonanza) | +| [The Last Spartan](https://github.com/kunjgit/GameZone/tree/main/Games/The_Last_Spartan) | [Space Exploration](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Exploration) | [Bow Arrow Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_Arrow) | [I Want To Google The Game](https://github.com/kunjgit/GameZone/tree/main/Games/I_Want_To_Google_The_Game) | [Space Gun](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Gun) | +| [Space Huggers](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Huggers) | [Spaceship Escort](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceship_Escort) | [Space Defence](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Defence) | [Glitch Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Glitch_Buster) | [3D Box Game](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Box_Game) | +| [Escape](https://github.com/kunjgit/GameZone/tree/main/Games/Escape) | [Retro Dungeon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Retro_Dungeon_Puzzle) | [Immunity Collapse](https://github.com/kunjgit/GameZone/tree/main/Games/Immunity_Collapse) | [Hunt Your Card](https://github.com/kunjgit/GameZone/tree/main/Games/Hunt_Your_Card) | [Tenacity](https://github.com/kunjgit/GameZone/tree/main/Games/Tenacity) | +| [Emoji Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Puzzle_Game) | [Back To Space](https://github.com/kunjgit/GameZone/tree/main/Games/Back_To_Space) | [Snooze](https://github.com/kunjgit/GameZone/tree/main/Games/Snooze) | [Galaxy Rider](https://github.com/kunjgit/GameZone/tree/main/Games/Galaxy_Rider) | [Squared Lines](https://github.com/kunjgit/GameZone/tree/main/Games/Squared_Lines) | +| [Space War](https://github.com/kunjgit/GameZone/tree/main/Games/Space_War) | [Sciara of Colors](https://github.com/kunjgit/GameZone/tree/main/Games/Sciara_Of_Colors) | [JunoJs](https://github.com/kunjgit/GameZone/tree/main/Games/JunoJs) | [Fall Down](https://github.com/kunjgit/GameZone/tree/main/Games/Fall_Down) | [Cat Goric](https://github.com/kunjgit/GameZone/tree/main/Games/Cat_Goric) | +| [Cable Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Cable_Maze) | [Spaceducts](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceducts) | [Zurbo](https://github.com/kunjgit/GameZone/tree/main/Games/Zurbo) | [Blast Zone](https://github.com/kunjgit/GameZone/tree/main/Games/BlastZone) | [Free Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Free_Bird) | +| [Maximise Boxes](https://github.com/kunjgit/GameZone/tree/main/Games/MaximiseBoxes) | [Slide Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Slide_Puzzle) | [Diamond Run](https://github.com/kunjgit/GameZone/tree/main/Games/Diamond_Run) | [Everyones Sky](https://github.com/kunjgit/GameZone/tree/main/Games/Everyones_Sky) | [Line Of Fire](https://github.com/kunjgit/GameZone/tree/main/Games/Line_Of_Fire) | +| [1024 Moves](https://github.com/kunjgit/GameZone/tree/main/Games/1024_Moves) | [Save The Forest](https://github.com/kunjgit/GameZone/tree/main/Games/Save_The_Forest) | [Dragon World Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_World_Game) | [DuckHunt](https://github.com/kunjgit/GameZone/tree/main/Games/DuckHunt) | [Plankman](https://github.com/kunjgit/GameZone/tree/main/Games/Plankman) | +| [Hold The Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Hold_The_Cloud) | [Labyrinth](https://github.com/kunjgit/GameZone/tree/main/Games/Labyrinth) | [RIP](https://github.com/kunjgit/GameZone/tree/main/Games/RIP) | [Risky Nav](https://github.com/kunjgit/GameZone/tree/main/Games/Risky_Nav) | [Pixels From Space](https://github.com/kunjgit/GameZone/tree/main/Games/Pixels_From_Space) | +| [Poker_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Poker_Dice) | [Unlock_The_Lock](https://github.com/kunjgit/GameZone/tree/main/Games/Unlock_The_Lock) | [Gnomedom](https://github.com/kunjgit/GameZone/tree/main/Games/Gnomedom) | [Lost In The Maze 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Lost_In_The_Maze_3D) | [PONG BALL](https://github.com/kunjgit/GameZone/tree/main/Games/Pong_Ball) | +| [Projectile Motion Game](https://github.com/kunjgit/GameZone/tree/main/Games/Projectile_Motion_Game) | [Swift](https://github.com/kunjgit/GameZone/tree/main/Games/Swift) | [Spacepi](https://github.com/kunjgit/GameZone/tree/main/Games/Spacepi) | [Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Destroyer) | [Terror_Seventy](https://github.com/kunjgit/GameZone/tree/main/Games/Terror_Seventy) | +| [Humming](https://github.com/kunjgit/GameZone/tree/main/Games/Humming) | [Word Search Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Word_search_puzzle) | [Ballarena](https://github.com/kunjgit/GameZone/tree/main/Games/Ballarena) | [Beyonder](https://github.com/kunjgit/GameZone/tree/main/Games/Beyonder) | [Shpere](https://github.com/kunjgit/GameZone/tree/main/Games/Shpere) | +| [Short Circuit](https://github.com/kunjgit/GameZone/tree/main/Games/Short_Circuit) | [Johnny Smiter](https://github.com/kunjgit/GameZone/tree/main/Games/Johnny_Smiter) | [Rectangular](https://github.com/kunjgit/GameZone/tree/main/Games/Rectangular) | [Canon Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Canon_Defense) | [Trashem](https://github.com/kunjgit/GameZone/tree/main/Games/Trashem) | +| [Chess](https://github.com/SoarinSkySagar/GameZone-GSSoC23/tree/main/Games/CHESS) | [Get The Pigeon](https://github.com/kunjgit/GameZone/tree/main/Games/Get_The_Pigeon) | [Uxu](https://github.com/kunjgit/GameZone/tree/main/Games/Uxu) | [Soul Jumper](https://github.com/kunjgit/GameZone/tree/main/Games/Soul_Jumper) | [Infernal Throne](https://github.com/kunjgit/GameZone/tree/main/Games/Infernal_Throne) | +| [Dead Again](https://github.com/kunjgit/GameZone/tree/main/Games/Dead_Again) | [Norman The Necromancer](https://github.com/kunjgit/GameZone/tree/main/Games/Norman_The_Necromancer) | [Shape Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Shape_Blocks) | [Goal_Rush](https://github.com/kunjgit/GameZone/tree/main/Games/Goal_Rush) | [Charon Jr](https://github.com/kunjgit/GameZone/tree/main/Games/Charon_Jr) | +| [Color Shifter](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Shifter) | [Oh, flip](https://github.com/kunjgit/GameZone/tree/main/Games/oh_flip) | [Snake Feeder Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Feeder_Game) | [LOSSST](https://github.com/kunjgit/GameZone/tree/main/Games/LOSSST) | [HangMan](https://github.com/kunjgit/GameZone/tree/main/Games/HangMan) | +| [Bad_Luck_Brian](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Luck_Brian) | [Bad_Depot](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Depot) | [Achluophobia](https://github.com/kunjgit/GameZone/tree/main/Games/Achluophobia) | [Timber_Terry](https://github.com/kunjgit/GameZone/tree/main/Games/Timber_Terry) | [Earth_Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Destroyer) | +| [Lonely Phantom](https://github.com/kunjgit/GameZone/tree/main/Games/Lonely_Phantom) | [Ghost Surf](https://github.com/kunjgit/GameZone/tree/main/Games/Ghost_Surf) | [Sucker](https://github.com/kunjgit/GameZone/tree/main/Games/Sucker) | [Sorades](https://github.com/kunjgit/GameZone/tree/main/Games/Sorades) | [Thirteen](https://github.com/kunjgit/GameZone/tree/main/Games/Thirteen) | +| [The Raising Fighting Spirits](https://github.com/kunjgit/GameZone/tree/main/Games/The_Raising_Fighting_Spirits) | [Green Mahjong](https://github.com/kunjgit/GameZone/tree/main/Games/Green_Mahjong) | [Drag And Drop Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Drag_And_Drop_Puzzle) | [Music Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Music_Guess_Game) | [Tower Of Hanoi](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Of_Hanoi) | +| [Mastermind_Mania](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind_Mania) | [Ludo_4_Player](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_4_Player) | [AirBalloon](https://github.com/kunjgit/GameZone/tree/main/Games/AirBalloon) | [Space Invaders](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Invaders) | [Cut the Rope](https://github.com/kunjgit/GameZone/tree/main/Games/Cut_the_rope) | +| [Caesar&Cipher](https://github.com/kunjgit/GameZone/tree/main/Games/Caesar_Cipher) | [Monster_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Monster_Maker) | [Stolen Sword](https://github.com/kunjgit/GameZone/tree/main/Games/Stolen_Sword) | [Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind) | [Highway 404](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_404) | +| [BullseyeGame](https://github.com/kunjgit/GameZone/tree/main/Games/BullseyeGame) | [Crossword Game](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Game) | [Guess the Correct Logo](https://github.com/shruti-2412/GameZone/tree/main/Games/Guess_The_Correct_Logo) | [Painting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Painting_Game) | [Platform_game_engine](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_game_engine) | +| [Kill_The_Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Kill_The_Bird) | +| [Doppelkopf](https://github.com/kunjgit/GameZone/tree/main/Games/Doppelkopf) | [quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/quiz_game) | [Island Survival](https://github.com/kunjgit/GameZone/tree/main/Games/Island_Survival) | [Linkup Game](https://github.com/kunjgit/GameZone/tree/main/Games/linkup) | [Trivia_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Trivia_Card) | +| [Insect Catch Game](https://github.com/kunjgit/GameZone/tree/main/Games/Insect_Catch_Game) | [Carnival_game](https://github.com/kunjgit/GameZone/tree/main/Games/Carnival_game) | [Make Me Laugh](https://github.com/kunjgit/GameZone/tree/main/Games/Make_Me_Laugh) | [Avoider_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Avoider_Game) | [Dungeon_Crawler](https://github.com/kunjgit/GameZone/tree/main/Games/Dungeon_Crawler) | +| [snake_water_gun](https://github.com/kunjgit/GameZone/tree/main/Games/snake_water_gun) | [Run and Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Run_and_Jump) | [AI CHESS Game](https://github.com/kunjgit/GameZone/tree/main/Games/AI_CHESS_Game) | [Fruit_Catching](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching) | [Bulls eye](https://github.com/kunjgit/GameZone/tree/main/Games/Bulls_eye) | +| [Crystals_Collecter](https://github.com/kunjgit/GameZone/tree/main/Games/Crystals_Collecter) | [Dots and Boxes Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dots_and_Boxes_Game) | [Infinite Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Infinite_Runner_Game) | [Mario_Matching](https://github.com/kunjgit/GameZone/tree/main/Games/mario_matching_game) | [Hand_Cricket](https://github.com/kunjgit/GameZone/tree/main/Games/Hand_Cricket) | +| [Crossword_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Puzzle) | [Pixel_Painter](https://github.com/kunjgit/GameZone/tree/main/Games/Pixel_Painter) | [Riddle_Room](https://github.com/kunjgit/GameZone/tree/main/Games/Riddle_Room) | [ArmorAlley](https://github.com/kunjgit/GameZone/tree/main/Games/ArmorAlley) | [Color_switcher](https://github.com/kunjgit/GameZone/tree/main/Games/Color_switcher) | +| [Maze of Cables](https://github.com/VSatwika/GameZonefork/tree/Maze_of_Cables/Games/Maze_of_Cables) | [Escape Room](https://github.com/kunjgit/GameZone/tree/main/Games/Escape_room) | [Super_mario_run](https://github.com/kunjgit/GameZone/tree/main/Games/Super_mario_run) | [Doodle_Draw](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Draw) | [Arcade_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arcade_Game) | +| [Slice Storm](https://github.com/VSatwika/GameZonefork/tree/Slice_Storm/Games/Slice_Storm) | [CodePen_SImulator](https://github.com/kunjgit/GameZone/tree/main/Games/CodePen_Simulator) | [Piano_Tiles](https://github.com/kunjgit/GameZone/tree/main/Games/PianoTiles_Game) | [CareTaker](https://github.com/kunjgit/GameZone/tree/main/Games/CareTaker) | [UNO](https://github.com/kunjgit/GameZone/tree/main/Games/UNO) | +| [Remeber the color](https://github.com/kunjgit/GameZone/tree/main/Games/Remember_the_color) | [Guess The Random Shape](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Random_Shape) | [Save Doraemon](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Doraemon) | [Animal_Match_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Animal_Match_Game) | [Hextris](https://github.com/kunjgit/GameZone/tree/main/Games/Hextris) | +| [MrFakeGame](https://github.com/kunjgit/GameZone/tree/main/Games/MrFakeGame) | [Checkers](https://github.com/kunjgit/GameZone/tree/main/Games/Checkers) | [Roulette](https://github.com/kunjgit/GameZone/tree/main/Games/Roulette) | [Aero Acrobat](https://github.com/kunjgit/GameZone/tree/main/Games/Aero_Acrobat) | [Adventure_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Adventure_Game) | +| [Pumpkin_Pursuit](https://github.com/kunjgit/GameZone/tree/main/Games/Pumpkin_Pursuit) | [Corona Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Corona_Shooter) | [Pokemon Ball Finder](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Ball_Finder) | [Basketball](https://github.com/kunjgit/GameZone/tree/main/Games/Basketball) | [Wault_master](https://github.com/kunjgit/GameZone/tree/main/Games/Wault_master) | +| [Reaction TIme](https://github.com/kunjgit/GameZone/tree/main/Games/Reaction_Time) | [Flag Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flag_Guess_Game) | [Cross_The_Road](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_Road) | [Highway Race - Barrel Dodge](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_Race) | [Bit_Maze_Platformer_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Bit_Maze_Platformer_Maze) | +| [Math Game](https://github.com/kunjgit/GameZone/tree/main/Games/Math_Game) | [Space Drifter](https://github.com/kunjgit/GameZone/tree/main/Games/space_drifter) | [Observe the Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Observe%20the%20Cloud) | [Cosmic_Coin_Blaster](https://github.com/kunjgit/GameZone/tree/main/Games/Cosmic_Coin_Blaster) | [Circus Charly](https://github.com/kunjgit/GameZone/tree/main/Games/Circus_Charly) | +| [Pikachu_Volleyball](https://github.com/kunjgit/GameZone/tree/main/Games/Pikachu_Volleyball) | [Trex_Run](https://github.com/akankshachanana1/GameZone/tree/Added/Games/Trex_Run) | [Crack_The_Code](https://github.com/kunjgit/GameZone/tree/main/Games/Crack_The_Code) | [Skeleathon](https://github.com/kunjgit/GameZone/tree/main/Games/Skeleathon) | [Shadow_PokeGuess](https://github.com/kunjgit/GameZone/tree/main/Games/Shadow_PokeGuess) | +| [Brain Color Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Color_Mastermind) | [Lizard Spock Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lizard_Spock_Game) | [Angry Boars](https://github.com/kunjgit/GameZone/tree/main/Games/Angry_Boars) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet_Learning_Game) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | +| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/main/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Alphabet_Learning_Game) | +| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Death by Hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Death_by_Hamster) | +| [Tenzies](https://github.com/kunjgit/GameZone/tree/main/Games/Tenzies) | [Target_Torrent](https://github.com/kunjgit/GameZone/tree/main/Games/Target_Torrent) | [Reversi](https://github.com/kunjgit/GameZone/tree/main/Games/Reversi) | [reaction_teaser](https://github.com/kunjgit/GameZone/pull/2134/files) | [Scribble](https://github.com/kunjgit/GameZone/tree/main/Games/Scribble) | +| [Brain Burst Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Burst_Game) | [StickTheSticker](https://github.com/kunjgit/GameZone/tree/main/Games/StickTheSticker) | [Meme_Battle_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Meme_Battle_Game) | [Match_Color_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Match_Color_Game) | [Bow_And_Arrow](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_And_Arrow) | +| [Beyblade](https://github.com/kunjgit/GameZone/tree/main/Games/Beyblade) | [The labyrinth of death](https://github.com/sahaycodes/GameZone/tree/meme/Games/The_labyrinth_of_death) | [2D BreakOut](https://github.com/kunjgit/GameZone/tree/main/Games/2D_Breakout) | [Battleship](https://github.com/kunjgit/GameZone/tree/main/Games/Battleship) | [Baseball](https://github.com/kunjgit/GameZone/tree/main/Games/Baseball) | +| [Save Princess](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Princess) | [RoadFighter](https://github.com/kunjgit/GameZone/tree/main/Games/RoadFighter) | [Guitar Game](https://github.com/kunjgit/GameZone/tree/main/Games/Guitar_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire) | [Lady Tiger Hunter](https://github.com/kunjgit/GameZone/tree/main/Games/Lady_Tiger_Hunter) | +| [Stone Paper Scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Stone_paper_scissor) | [Flashlight_Pointer_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flashlight_Pointer_Game) | [Pig game](https://github.com/KanchanBora/GameZone/tree/main/Games/Pig_game) | [Asteroids 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Asteroids_3D) | [Lamb Lane](https://github.com/sahaycodes/GameZone/tree/meme/Games/Lamb_Lane) | +| [Dinoffline](https://github.com/kunjgit/GameZone/tree/main/Games/Dinoffline) | [Maths Sprint Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maths_Sprint_Game) | [Etch a Sketch](https://github.com/kunjgit/GameZone/tree/main/Games/Etch_a_Sketch) | [QuizzApp](https://github.com/kunjgit/GameZone/tree/main/Games/QuizzApp) | [Chess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game) | +| [Which Color](https://github.com/sahaycodes/GameZone/tree/main/Games/Which_Color) | [Snail_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Snail_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire_up) | [Slime Attack](https://github.com/apu52/GameZone/tree/Slime-Attack-game/Games/Slime_attack_game) | [Star_Trek_Trivia](https://github.com/kunjgit/GameZone/tree/starTrek-trivia/Games/Star_Trek_Trivia) | +| [Pokemon_Card_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Card_Game) | [Digit Dilemma](https://github.com/kunjgit/GameZone/tree/main/Games/Digit_Dilemma) | [Tennis](https://github.com/kunjgit/GameZone/tree/main/Games/Tennis) | [Illusion](https://github.com/kunjgit/GameZone/tree/main/Games/Illusion) | [Block Buster](https://github.com/sahaycodes/GameZone/tree/meme/Games/Block_Buster) | +| [Guess_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Ball) | [Doremon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Doremon_Puzzle) | [Guess The Celebrity](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Celeb) | [Rock_Paper_Scissors_Lizard_Spock](https://github.com/kunjgit/GameZone/tree/main/Rock_Paper_Scissors_Lizard_Spock) | [Elemental Riddles](https://github.com/kunjgit/GameZone/tree/main/Elemental_Riddles) | +| [Falling_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Ball) | [Hit Target](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_Target) | [Archery](https://github.com/kunjgit/GameZone/tree/main/Games/Archery) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | +| [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | +| [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [Code Cracker](https://github.com/kunjgit/GameZone/tree/main/Code_Cracker) | [Know Your Country](https://github.com/kunjgit/GameZone/tree/main/Games/Know_Your_Country) | [Musical_Floor](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Floor) | [Sky_Dodge](https://github.com/kunjgit/GameZone/tree/main/Sky_Dodge) | +| [Swap Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Swap-Card-Game) | [Memorization_card](https://github.com/kunjgit/GameZone/tree/main/Games/Memorization_card) | [Smashing_Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Smashing_Blocks) | [Response_Reaction](https://github.com/kunjgit/GameZone/tree/main/Games/Response_Reaction) | [Truth and Dare](https://github.com/kunjgit/GameZone/tree/main/Games/Truth_And_Dare) | +| [Rotating_Elements](https://github.com/tanujbordikar/GameZone/tree/Rotating_Elements) | [Chopsticks](https://github.com/kunjgit/GameZone/tree/main/Games/Chopsticks) | [Anime Clicker](https://github.com/kunjgit/GameZone/tree/main/Games/Anime_Clicker) | [3D Snake](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Snake) | [Rocket_Showdown](https://github.com/tanujbordikar/GameZone/tree/Rocket_Showdown) | +| [Find Extra Cube](https://github.com/kunjgit/GameZone/tree/main/Games/Find_Extra_Cube) | [PathPlex](https://github.com/kunjgit/GameZone/tree/main/Games/Pathplex) | [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [CSS Crossword](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Crossword) | +| [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [Flip Coin](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Coin) | [Witty Word Quest](https://github.com/kunjgit/GameZone/tree/main/Games/witty_word_quest) | [Typing Game](https://github.com/Ishan-77/GameZone/tree/main/Games/Typing_Game) | +| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | +| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Color_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Blast) | +| [Wordling](https://github.com/kunjgit/GameZone/tree/main/Games/Wordling) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). | -| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Audio_Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Audio_Wordle) +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). | +| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Audio_Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Audio_Wordle) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | | [escaperoom](https://github.com/kunjgit/GameZone/tree/main/Games/escaperoom) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) @@ -641,10 +637,10 @@ This repository also provides one such platforms where contributers come over an | [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | | [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | -| [CopyCat](https://github.com/kunjgit/GameZone/tree/main/Games/CopyCat) | +| [CopyCat](https://github.com/kunjgit/GameZone/tree/main/Games/CopyCat) | [DoraemonRun ](https://github.com/kunjgit/GameZone/tree/main/Games/DoraemonRun) | | [Memory_Cards_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Cards_Game) | -| [Typing_Speed_Test2](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test2) | [Tic Tac Toe Responsive ](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_tac_toe_responsive) | [Minesweeper Easy ](https://github.com/kunjgit/GameZone/tree/main/Games/MineSweeper_Easy) | +| [Typing_Speed_Test2](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test2) | [Tic Tac Toe Responsive ](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_tac_toe_responsive) | [Minesweeper Easy ](https://github.com/kunjgit/GameZone/tree/main/Games/MineSweeper_Easy) | | [Technical_Mind_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Technical_Mind_Game) | [Slide_Master_Puzzle](https://github.com/kunjgit/GameZone/tree/Main/Games/Slide_Master_Puzz)| | | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [Letter_Sleuth](https://github.com/swetha5157/GameZone/tree/main/Games/Letter_Sleuth) @@ -784,14 +780,14 @@ This repository also provides one such platforms where contributers come over an | [Bubble'z Popper](https://github.com/Chandu6702/GameZone/tree/main/Games/Bubble'z Popper)| | [Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | | [Gravity_Simulation_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Gravity_Simulation_Game) | -| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) -| [Catch_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Ball) | -| [Ball_in_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_in_Maze) | -|[Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | -| [Gravity_Simulation_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Gravity_Simulation_Game) +| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) +| [Catch_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Ball) | +| [Ball_in_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_in_Maze) | +|[Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | +| [Gravity_Simulation_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Gravity_Simulation_Game) | [Anagarm-Word-Game](https://github.com/kunjgit/GameZone/tree/main/Games/Anagarm-Word-Game) | | [Brick Buster Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick Buster) | -| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) +| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) | [Alphabet-and-Vowels](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet-and-Vowels) | | [Brick Buster Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick%20Buster) | | [Penguins Can't Fly](https://github.com/Will2Jacks/GameZoneForked/tree/Task/Games/Penguins_Can't_Fly) | @@ -799,13 +795,13 @@ This repository also provides one such platforms where contributers come over an | [Number_Guessing_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Guessing_Game) | | [Currency_Converter](https://github.com/kunjgit/GameZone/tree/main/Games/Currency_Converter) | | [mario-game](https://github.com/kunjgit/GameZone/tree/main/Games/mario-game) | -| [Fruit_Slicer_Game] (https://github.com/narayani9120/GameZone_B/tree/main/Games/Fruit_Slicer_Game) | +| [Fruit_Slicer_Game] (https://github.com/narayani9120/GameZone_B/tree/main/Games/Fruit_Slicer_Game) | | [Tower_Block_Game](https://github.com/Saipradyumnagoud/GameZone/tree/main/Games/Tower_Block_Game) | | [Modulo_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Modulo_Game) | | [Memory_Matching_Game](https://github.com/Saipradyumnagoud/GameZone/tree/main/Games/Memory_Matching_Game) | |[Penguins Can't Fly](https://github.com/Will2Jacks/GameZoneForked/tree/Task/Games/Penguins_Can't_Fly)| -| [Block_Ninja] (https://github.com/kunjgit/GameZone/tree/main/Games/Block_Ninja) | -| [Shoot_Duck_Game] (https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_Duck_Game) | +| [Block_Ninja] (https://github.com/kunjgit/GameZone/tree/main/Games/Block_Ninja) | +| [Shoot_Duck_Game] (https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_Duck_Game) | | [Disney_Trivia](https://github.com/manmita/GameZone/tree/Disney_Trivia/Games/Disney_Trivia)| |[puzzle-game](https://github.com/kunjgit/GameZone/tree/main/Games/puzzle-game)| | [Helicopter_Game](https://github.com/kinjgit/GameZone/tree/main/Games/Helicopter_Game) | @@ -825,13 +821,13 @@ This repository also provides one such platforms where contributers come over an | [Typing_Test](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Test) | |[Wheel_of_Fortunes](https://github.com/Saipradyumnagoud/GameZone/tree/main/Games/Wheel_of_Fortunes)| - + | [Tic_Tac_Toe_Neon](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe_Neon) | | [Ultimate_Football_Manager](https://github.com/kunjgit/GameZone/tree/main/Games/Ultimate_Football_Manager) | |[Zombie_Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Zombie_Shooter)| - | [Ganesh_QR_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Ganesh_QR_Maker) | +| [Ganesh_QR_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Ganesh_QR_Maker) | |[Brain_Card_game](https://github.com/Kunjgit/GameZone/tree/main/Games/Brain_Card_game)| |[Wheel_of_Fortunes](https://github.com/kunjgit/GameZone/tree/main/Games/Wheel_of_Fortunes)| |[Samurai_Fighting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Samurai_Fighting_Game)| @@ -843,7 +839,7 @@ This repository also provides one such platforms where contributers come over an | [Dragon_Slayer](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Slayer) | |[Pattern Creation Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pattern_Creation_Game)| - [Magic_8_ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_8_ball) | +[Magic_8_ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_8_ball) | | [Catch_Craze](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_Craze) | | [Angry_Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Angry_Bird) | | [Subway_Surfers](https://github.com/kunjgit/GameZone/tree/main/Games/Subway_Surfers) | @@ -862,28 +858,26 @@ This repository also provides one such platforms where contributers come over an | [Dragon Ball Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Ball_Game) | |[Otherworldly_Odyssey](./Games/Otherworldly_Odyssey/)| - - -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | [Colour_Generator_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Generator_Game) | -| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | [Mancala_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Mancala_Game) | [2048_win](https://github.com/kunjgit/GameZone/tree/main/Games/2048_win) | [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Chrome_Dino_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dino_Game) | -| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | [Shrek_Vs_Wild](https://github.com/kunjgit/GameZone/tree/main/Games/Shrek_Vs_Wild) | [Balloon_Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Balloon_Buster) | [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | -[path_finder](https://github.com/kunjgit/GameZone/tree/main/Games/path_finder) | [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | [Guess_num](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_num) | [QuickFingers](https://github.com/kunjgit/GameZone/tree/main/Games/QuickFingers) | [Physics_Quizz](https://github.com/kunjgit/GameZone/tree/main/Games/Physics_Quizz) | -| [Tiny_Fishing](https://github.com/kunjgit/GameZone/tree/main/Games/Tiny_Fishing) | [IKnowYou-Mind-Reading-Game](https://github.com/kunjgit/GameZone/tree/main/Games/IKnowYou-Mind-Reading-Game) | [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | [namefate](https://github.com/kunjgit/GameZone/tree/main/Games/namefate) | [Fruit_Catching_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching_Game) | -[color_matching_application](https://github.com/kunjgit/GameZone/tree/main/Games/color_matching_application) | [Pictionary_Game](https://github.com/Jagpreet153/GameZone/tree/main/Games/Pictionary_Game) | [Anagram_Checker_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Anagram_Checker_Game) | [HitYourFriend](https://github.com/kunjgit/GameZone/tree/main/Games/HitYourFriend) | [Random_joke_Generator](https://github.com/Jagpreet153/GameZone/tree/main/Games/Random_joke_Generator) | -| [Arkanoid_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arkanoid_Game) | [Catch_Stars](https://github.com/Kunjgit/GameZone/tree/main/Games/Catch_Stars) | [Color Matcher](https://github.com/1911aditi/GameZone/tree/1a4f3847e11bb13b1aca4652a87868c9bc467a93/Games/color%20matcher) | [LaserDarts](https://github.com/Jagpreet153/GameZone/tree/main/Games/LaserDarts) | [Block Building](https://github.com/kunjgit/GameZone/tree/main/Games/Block_Building) | -| [Flames Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flames_Game)| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Emoji_slot_machine](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_slot_machine) | -| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | [Pixel Painter](https://github.com/kunjgit/GameZone/tree/main/Games/pixel_painter) | [Guess_The_Song](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Song) | [Reverse Memory](https://github.com/MuraliDharan7/GameZone/tree/reverse-memory-game/Games/Reverse%20Memory) | [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | -| [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | [WordScramble](https://github.com/kunjgit/GameZone/tree/main/Games/wordScramble) | [Roll_The_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_The_Dice) | [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | [Screen Pet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Screen-Pet-Game) | -|[Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | [Color The Page](https://github.com/kunjgit/GameZone/tree/main/Games/Color_The_Page)| [Building Blocks Game](https://github.com/kunjgit/GameZone/tree/main/Games/Building_Block_Game)| [Cartoon character guessing game](https://github.com/kunjgit/GameZone/tree/main/Games/Cartoon_Character_Guessing_Game)| -|[Carrom Board Game](https://github.com/kunjgit/GameZone/tree/main/Games/carrom)| [Number_Recall_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Recall_Game) | [Hit_the_hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_the_hamster) | [Forest_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Forst_Guardian) | [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | -| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) |[Color The Page](https://github.com/kunjgit/GameZone/tree/main/Games/Color_The_Page)| [AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | [Chess_Game_computer](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game_computer) |[Turn_on_the_light](https://github.com/kunjgit/GameZone/tree/main/Games/Turn_on_the_light) | -| [Tic-Tac-Toe Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tic-Tac-Toe) | [Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) | [Gravity_Simulation_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Gravity_Simulation_Game) | [Anagarm-Word-Game](https://github.com/kunjgit/GameZone/tree/main/Games/Anagarm-Word-Game) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | [Colour_Generator_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Generator_Game) | +| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | [Mancala_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Mancala_Game) | [2048_win](https://github.com/kunjgit/GameZone/tree/main/Games/2048_win) | [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Chrome_Dino_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dino_Game) | +| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | [Shrek_Vs_Wild](https://github.com/kunjgit/GameZone/tree/main/Games/Shrek_Vs_Wild) | [Balloon_Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Balloon_Buster) | [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | +[path_finder](https://github.com/kunjgit/GameZone/tree/main/Games/path_finder) | [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | [Guess_num](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_num) | [QuickFingers](https://github.com/kunjgit/GameZone/tree/main/Games/QuickFingers) | [Physics_Quizz](https://github.com/kunjgit/GameZone/tree/main/Games/Physics_Quizz) | +| [Tiny_Fishing](https://github.com/kunjgit/GameZone/tree/main/Games/Tiny_Fishing) | [IKnowYou-Mind-Reading-Game](https://github.com/kunjgit/GameZone/tree/main/Games/IKnowYou-Mind-Reading-Game) | [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | [namefate](https://github.com/kunjgit/GameZone/tree/main/Games/namefate) | [Fruit_Catching_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching_Game) | +[color_matching_application](https://github.com/kunjgit/GameZone/tree/main/Games/color_matching_application) | [Pictionary_Game](https://github.com/Jagpreet153/GameZone/tree/main/Games/Pictionary_Game) | [Anagram_Checker_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Anagram_Checker_Game) | [HitYourFriend](https://github.com/kunjgit/GameZone/tree/main/Games/HitYourFriend) | [Random_joke_Generator](https://github.com/Jagpreet153/GameZone/tree/main/Games/Random_joke_Generator) | +| [Arkanoid_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arkanoid_Game) | [Catch_Stars](https://github.com/Kunjgit/GameZone/tree/main/Games/Catch_Stars) | [Color Matcher](https://github.com/1911aditi/GameZone/tree/1a4f3847e11bb13b1aca4652a87868c9bc467a93/Games/color%20matcher) | [LaserDarts](https://github.com/Jagpreet153/GameZone/tree/main/Games/LaserDarts) | [Block Building](https://github.com/kunjgit/GameZone/tree/main/Games/Block_Building) | +| [Flames Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flames_Game)| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Emoji_slot_machine](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_slot_machine) | +| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | [Pixel Painter](https://github.com/kunjgit/GameZone/tree/main/Games/pixel_painter) | [Guess_The_Song](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Song) | [Reverse Memory](https://github.com/MuraliDharan7/GameZone/tree/reverse-memory-game/Games/Reverse%20Memory) | [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | +| [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | [WordScramble](https://github.com/kunjgit/GameZone/tree/main/Games/wordScramble) | [Roll_The_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_The_Dice) | [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | [Screen Pet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Screen-Pet-Game) | +|[Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | [Color The Page](https://github.com/kunjgit/GameZone/tree/main/Games/Color_The_Page)| [Building Blocks Game](https://github.com/kunjgit/GameZone/tree/main/Games/Building_Block_Game)| [Cartoon character guessing game](https://github.com/kunjgit/GameZone/tree/main/Games/Cartoon_Character_Guessing_Game)| +|[Carrom Board Game](https://github.com/kunjgit/GameZone/tree/main/Games/carrom)| [Number_Recall_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Recall_Game) | [Hit_the_hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_the_hamster) | [Forest_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Forst_Guardian) | [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | +| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) |[Color The Page](https://github.com/kunjgit/GameZone/tree/main/Games/Color_The_Page)| [AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | [Chess_Game_computer](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game_computer) |[Turn_on_the_light](https://github.com/kunjgit/GameZone/tree/main/Games/Turn_on_the_light) | +| [Tic-Tac-Toe Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tic-Tac-Toe) | [Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) | [Gravity_Simulation_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Gravity_Simulation_Game) | [Anagarm-Word-Game](https://github.com/kunjgit/GameZone/tree/main/Games/Anagarm-Word-Game) | | [Brick Buster Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick_Buster) | [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) |[Penguins Cant Fly](https://github.com/Will2Jacks/GameZoneForked/tree/Task/Games/Penguins_Cant_Fly)| [GoFish](https://github.com/kunjgit/GameZone/tree/main/Games/GoFish)| [Taash_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Taash_Game)| -| [Intellect Quest](https://github.com/Will2Jacks/GameZoneForked/tree/Task/Games/Intellect_Quest) |[Number_Guessing_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Guessing_Game) | [Modulo_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Modulo_Game) | [IKnowYou-Mind-Reading-Game](https://github.com/kunjgit/GameZone/tree/main/Games/IKnowYou-Mind-Reading-Game) | [Tic_Tac_Toe_Neon](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe_Neon) | [Tic_Tac_Toe_Neon](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe_Neon) | +| [Intellect Quest](https://github.com/Will2Jacks/GameZoneForked/tree/Task/Games/Intellect_Quest) |[Number_Guessing_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Guessing_Game) | [Modulo_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Modulo_Game) | [IKnowYou-Mind-Reading-Game](https://github.com/kunjgit/GameZone/tree/main/Games/IKnowYou-Mind-Reading-Game) | [Tic_Tac_Toe_Neon](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe_Neon) | [Tic_Tac_Toe_Neon](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe_Neon) | [Magic_8_ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_8_ball) | [Catch_Craze](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_Craze) | [Dice_Rolling_Simulator](https://github.com/priyashuu/GameZone/tree/main/Games/Dice_rolling_simulator)| [Space_Dominators](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Dominators)|[Rock_Paper_Scissors_Neon](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors_Neon)| -|[Beat_a_mole](https://github.com/kunjgit/GameZone/tree/main/Games/Beat_a_mole)|[Catch Him](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_him) | [Hexsweep_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Hexsweep-Game)| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who)| -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [Dinosaur_Memory_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dinosaur_Memory_Game) | [Hedgehog_Havoc](https://github.com/kunjgit/GameZone/tree/main/Games/Hedgehog_Havoc) - | [Ultimate_Football_Manager](https://github.com/kunjgit/GameZone/tree/main/Games/Ultimate_Football_Manager) | [Zombie_Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Zombie_Shooter)| [Ganesh_QR_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Ganesh_QR_Maker) | [Brain_Card_game](https://github.com/Kunjgit/GameZone/tree/main/Games/Brain_Card_game)| [Wheel_of_Fortunes](https://github.com/kunjgit/GameZone/tree/main/Games/Wheel_of_Fortunes)| +|[Beat_a_mole](https://github.com/kunjgit/GameZone/tree/main/Games/Beat_a_mole)|[Catch Him](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_him) | [Hexsweep_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Hexsweep-Game)| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who)| +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [Dinosaur_Memory_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dinosaur_Memory_Game) | [Hedgehog_Havoc](https://github.com/kunjgit/GameZone/tree/main/Games/Hedgehog_Havoc) +| [Ultimate_Football_Manager](https://github.com/kunjgit/GameZone/tree/main/Games/Ultimate_Football_Manager) | [Zombie_Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Zombie_Shooter)| [Ganesh_QR_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Ganesh_QR_Maker) | [Brain_Card_game](https://github.com/Kunjgit/GameZone/tree/main/Games/Brain_Card_game)| [Wheel_of_Fortunes](https://github.com/kunjgit/GameZone/tree/main/Games/Wheel_of_Fortunes)| |[Samurai_Fighting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Samurai_Fighting_Game)| [Tic-tac-toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic-tac-toe)| [Quest_For_Riches](https://github.com/kunjgit/GameZone/tree/main/Games/Quest_For_Riches)| [Pattern Creation Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pattern_Creation_Game)| [Magic_8_ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_8_ball) | | [Catch_Craze](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_Craze) | [UNO game with computer](https://github.com/kunjgit/GameZone/tree/main/Games/UNO_game_with_Computer) | [Dice_Rolling_Simulator](https://github.com/priyashuu/GameZone/tree/main/Games/Dice_rolling_simulator)| [Space_Dominators](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Dominators)| [Simon_Says](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Says) | @@ -891,7 +885,7 @@ This repository also provides one such platforms where contributers come over an |[Idle_miner](https://github.com/kunjgit/GameZone/tree/main/Games/Idle_miner)| [Five_Nights_at_Freddys](https://github.com/kunjgit/GameZone/tree/main/Games/Five_Nights_at_Freddys) | [Penalty_Shootout_Game] (https://github.com/kunjgit/GameZone/tree/main/Games/Penalty_Shootout_Game)| |[Snake_Gun_Water](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Gun_Water)| | [Drum_kit] (https://github.com/kunjgit/GameZone/tree/main/Games/Drum_kit)| - +

Back to top

@@ -975,10 +969,8 @@ This repository also provides one such platforms where contributers come over an - `[Issue Title]: Your Issue` make sure you just add your issue name - ex .`[New game]: Super Mario` - - Make sure you select the program in which you are participating 🔥 -======= -| Game | Game | Game | Game | Game | - + - # Make sure you select the program in which you are participating 🔥 + | Game | Game | Game | Game | Game | - Wait till you have been assigned the issue - After you have been assigned the issue start working on the code @@ -1006,96 +998,96 @@ This repository also provides one such platforms where contributers come over an -| Game | Game | Game | Game | Game | +| Game | Game | Game | Game | Game | | ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | --- | -| [Master Typing](https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing) | [Treasure Hunt](https://github.com/Antiquely3059/GameZone/tree/main/Games/Treasure%20Hunt) | [Virtual Pet](https://github.com/Antiquely3059/GameZone/tree/main/Games/Virtual_Pet) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | | -| [Tilting Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Tilting_Maze) | [Simon Game Challenge](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Game_Challenge) | [Snake Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Game) | [Dino Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dino_Runner_Game) | -| [Whack a Mole](https://github.com/kunjgit/GameZone/tree/main/Games/Whack_a_Mole) | [Doraemon Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doraemon_Jump) | [Black Jack](https://github.com/kunjgit/GameZone/tree/main/Games/Black_Jack) | [Memory Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Game) | [Word Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Guessing_Game) | -| [Ludo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_Game) | [Piano Game](https://github.com/kunjgit/GameZone/tree/main/Games/Piano) | [Atari Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Atari_Breakout) | [Dinosaur Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dinosaur_Game) | [Guess The Colour by RGB Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Guessing_Game) | -| [Guess The Number](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Number) | [Race car game](https://github.com/kunjgit/GameZone/tree/main/Games/race_car) | [Aim Training](https://github.com/DP-NOTHING/GameZone/tree/contri/Games/Aim_Training) | [Alien Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Alien_Shooters) | [Fruit Ninja](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Ninja) | -| [Doodle Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Jump) | [Alphabet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet) | [Candy Crush](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush) | [Word Association Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Association_Game) | [Tic Tac Toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe) | -| [Flappy Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flappy_Bird) | [Trivia It](https://hithub.com/kunjgit/GameZone/tree/main/Games/Trivia_It) | [Minesweeper](https://github.com/kunjgit/GameZone/tree/main/Games/Minesweeper) | [Dice ShowDown Game](https://github.com/Himanshu07-debug/GameZone/tree/main/Games/Dice_Showdown_Game) | [Pac Man Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pac_Man_Game) | -| [Brick Breaker Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick_Breaker) | [Magic Square Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_Square) | [Fight Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fight_Game) | [Lighthouse Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lighthouse) | [Lights Out Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lights_Out) | -| [Word Scramble Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Scramble_Game) | [Tetris](https://github.com/kunjgit/GameZone/tree/main/Games/Tetris) | [Interactive Quizzing Application](https://github.com/kunjgit/GameZone/tree/main/Games/Interactive_Quizzing) | [Planet Defense Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Defense) | [Rabbit Rush Game](https://github.com/kunjgit/GameZone/tree/main/Games/Rabbit_Rush) | -| [Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Wordle) | [Roll Race Game](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_Race) | [Menja Game](https://github.com/kunjgit/GameZone/tree/main/Games/Menja) | [Typing Speed Test Game](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test_Game) | [Tile Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tile_Game) | -| [Stick Hero Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stick_Hero_Game) | [Starwars Character Game](https://github.com/kunjgit/GameZone/tree/main/Games/Starwars_Character_Game) | [Traffic Run](https://github.com/kunjgit/GameZone/tree/main/Games/Traffic_Run) | [Love Result Predictor](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Result_Predictor) | [Tower Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Defense) | -| [Menja_block_breaker](https://github.com/kunjgit/GameZone/tree/main/Games/Menja_block_breaker) | | [Yahtzee](https://github.com/kunjgit/GameZone/tree/main/Games/Yahtzee) | -| [Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bird_game) | [Bubble Blast Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Blast_Game) | [Emoji Charades](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Charades) | [Drum And Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Drum_Kit_Game) | [Rock Paper Scissors](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors) | -| [Frogger](https://github.com/kunjgit/GameZone/tree/main/Games/Frogger) | [!morethan5 ](https://github.com/kunjgit/GameZone/tree/main/Games/Not_morethan5) | [Unruly Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Unruly_Tower) | [Maze Game](https://github.com/kunjgit/GameZone/tree/main/Games/MazeGame) | [Connect4](https://github.com/kunjgit/GameZone/tree/main/Games/Connect4) | -| [Spelling_Bee](https://github.com/kunjgit/GameZone/tree/main/Games/Spelling_Bee) | [2048](https://github.com/kunjgit/GameZone/tree/main/Games/2048) | [Spin the Wheel](https://github.com/kunjgit/GameZone/tree/main/Games/Spin_the_wheel) | [Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Breakout) | [Tower Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Blocks) | -| [Platform Game](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_Game) | [Red Light Green Light](https://github.com/kunjgit/GameZone/tree/main/Games/Red_Light_Green_Light) | [Squash your Enemy](https://github.com/kunjgit/GameZone/tree/main/Games/Squashing_your_Enemy) | [Avax Gods](https://github.com/kunjgit/GameZone/tree/main/Games/Avax_gods) | [Flip Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Card_Game) | -| [Bingo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bingo_Game) | [Fifteen Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fifteen_Puzzle_Game) | [Stack_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stack_Game) | [Block.io_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Block.io) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | -| [Touch_The_Ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Touch_The_Ball) | [Sudoku](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku) | [Mini Golf](https://github.com/kunjgit/GameZone/tree/main/Games/Mini_Golf) | [Rubik's solver](https://github.com/kunjgit/GameZone/tree/main/Games/Rubik's_solver) | [Shoot_The_Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_The_Balloon) | -| [Dont_Die_To_Ghosts](https://github.com/kunjgit/GameZone/tree/main/Games/Dont_Die_To_Ghosts) | [SciFi Alchemy](https://github.com/kunjgit/GameZone/tree/main/Games/SciFi_Alchemy) | [Packabunchas](https://github.com/kunjgit/GameZone/tree/main/Games/Packabunchas) | [Cast and Catch](https://github.com/Sheetal-05/GameZone/tree/main/Games/Cast_and_Catch) | [Track Not Found](https://github.com/kunjgit/GameZone/tree/main/Games/Track_Not_Found) | -| [Love Calculator Game](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Calci) | [Planet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Game) | [Snake Ladder](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Ladder) | [Among Us Game](https://github.com/kunjgit/GameZone/tree/main/Games/Among_Us_Game) | [Pokedex Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokedex) | -| [Pacific Air Battle](https://github.com/kunjgit/GameZone/tree/main/Games/Pacific_Air_Battle) | [Dante](https://github.com/kunjgit/GameZone/tree/main/Games/Dante) | [Ping Pong Multiplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Multiplayer) | [Sonic The Hedgehog](https://github.com/kunjgit/GameZone/tree/main/Games/Sonic_The_Hedgehog) | [World Of Emojis](https://github.com/kunjgit/GameZone/tree/main/Games/World_Of_Emojis) | -| [Ball Fall Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Fall_Game) | [Pinball](https://github.com/kunjgit/GameZone/tree/main/Games/Pinball) | [Duck_Hunting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Duck_Hunting_Game) | [Color Turner](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Turner) | [Catch the Bunny](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_the_Bunny) | -| [Catch me game](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_me_game) | [Blank Detective](https://github.com/kunjgit/GameZone/tree/main/Games/Blanks_Detective) | [Falling Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Blocks) | [Movie Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Movie_Guessing_Game) | [Wildcard Bonanza](https://github.com/kunjgit/GameZone/tree/main/Games/Wildcard_Bonanza) | -| [The Last Spartan](https://github.com/kunjgit/GameZone/tree/main/Games/The_Last_Spartan) | [Space Exploration](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Exploration) | [Bow Arrow Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_Arrow) | [I Want To Google The Game](https://github.com/kunjgit/GameZone/tree/main/Games/I_Want_To_Google_The_Game) | [Space Gun](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Gun) | -| [Space Huggers](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Huggers) | [Spaceship Escort](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceship_Escort) | [Space Defence](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Defence) | [Glitch Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Glitch_Buster) | [3D Box Game](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Box_Game) | -| [Escape](https://github.com/kunjgit/GameZone/tree/main/Games/Escape) | [Retro Dungeon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Retro_Dungeon_Puzzle) | [Immunity Collapse](https://github.com/kunjgit/GameZone/tree/main/Games/Immunity_Collapse) | [Hunt Your Card](https://github.com/kunjgit/GameZone/tree/main/Games/Hunt_Your_Card) | [Tenacity](https://github.com/kunjgit/GameZone/tree/main/Games/Tenacity) | -| [Emoji Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Puzzle_Game) | [Back To Space](https://github.com/kunjgit/GameZone/tree/main/Games/Back_To_Space) | [Snooze](https://github.com/kunjgit/GameZone/tree/main/Games/Snooze) | [Galaxy Rider](https://github.com/kunjgit/GameZone/tree/main/Games/Galaxy_Rider) | [Squared Lines](https://github.com/kunjgit/GameZone/tree/main/Games/Squared_Lines) | -| [Space War](https://github.com/kunjgit/GameZone/tree/main/Games/Space_War) | [Sciara of Colors](https://github.com/kunjgit/GameZone/tree/main/Games/Sciara_Of_Colors) | [JunoJs](https://github.com/kunjgit/GameZone/tree/main/Games/JunoJs) | [Fall Down](https://github.com/kunjgit/GameZone/tree/main/Games/Fall_Down) | [Cat Goric](https://github.com/kunjgit/GameZone/tree/main/Games/Cat_Goric) | -| [Cable Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Cable_Maze) | [Spaceducts](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceducts) | [Zurbo](https://github.com/kunjgit/GameZone/tree/main/Games/Zurbo) | [Blast Zone](https://github.com/kunjgit/GameZone/tree/main/Games/BlastZone) | [Free Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Free_Bird) | -| [Maximise Boxes](https://github.com/kunjgit/GameZone/tree/main/Games/MaximiseBoxes) | [Slide Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Slide_Puzzle) | [Diamond Run](https://github.com/kunjgit/GameZone/tree/main/Games/Diamond_Run) | [Everyones Sky](https://github.com/kunjgit/GameZone/tree/main/Games/Everyones_Sky) | [Line Of Fire](https://github.com/kunjgit/GameZone/tree/main/Games/Line_Of_Fire) | -| [1024 Moves](https://github.com/kunjgit/GameZone/tree/main/Games/1024_Moves) | [Save The Forest](https://github.com/kunjgit/GameZone/tree/main/Games/Save_The_Forest) | [Dragon World Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_World_Game) | [DuckHunt](https://github.com/kunjgit/GameZone/tree/main/Games/DuckHunt) | [Plankman](https://github.com/kunjgit/GameZone/tree/main/Games/Plankman) | -| [Hold The Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Hold_The_Cloud) | [Labyrinth](https://github.com/kunjgit/GameZone/tree/main/Games/Labyrinth) | [RIP](https://github.com/kunjgit/GameZone/tree/main/Games/RIP) | [Risky Nav](https://github.com/kunjgit/GameZone/tree/main/Games/Risky_Nav) | [Pixels From Space](https://github.com/kunjgit/GameZone/tree/main/Games/Pixels_From_Space) | -| [Poker_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Poker_Dice) | [Unlock_The_Lock](https://github.com/kunjgit/GameZone/tree/main/Games/Unlock_The_Lock) | [Gnomedom](https://github.com/kunjgit/GameZone/tree/main/Games/Gnomedom) | [Lost In The Maze 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Lost_In_The_Maze_3D) | [PONG BALL](https://github.com/kunjgit/GameZone/tree/main/Games/Pong_Ball) | -| [Projectile Motion Game](https://github.com/kunjgit/GameZone/tree/main/Games/Projectile_Motion_Game) | [Swift](https://github.com/kunjgit/GameZone/tree/main/Games/Swift) | [Spacepi](https://github.com/kunjgit/GameZone/tree/main/Games/Spacepi) | [Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Destroyer) | [Terror_Seventy](https://github.com/kunjgit/GameZone/tree/main/Games/Terror_Seventy) | -| [Humming](https://github.com/kunjgit/GameZone/tree/main/Games/Humming) | [Word Search Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Word_search_puzzle) | [Ballarena](https://github.com/kunjgit/GameZone/tree/main/Games/Ballarena) | [Beyonder](https://github.com/kunjgit/GameZone/tree/main/Games/Beyonder) | [Shpere](https://github.com/kunjgit/GameZone/tree/main/Games/Shpere) | -| [Short Circuit](https://github.com/kunjgit/GameZone/tree/main/Games/Short_Circuit) | [Johnny Smiter](https://github.com/kunjgit/GameZone/tree/main/Games/Johnny_Smiter) | [Rectangular](https://github.com/kunjgit/GameZone/tree/main/Games/Rectangular) | [Canon Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Canon_Defense) | [Trashem](https://github.com/kunjgit/GameZone/tree/main/Games/Trashem) | -| [Chess](https://github.com/SoarinSkySagar/GameZone-GSSoC23/tree/main/Games/CHESS) | [Get The Pigeon](https://github.com/kunjgit/GameZone/tree/main/Games/Get_The_Pigeon) | [Uxu](https://github.com/kunjgit/GameZone/tree/main/Games/Uxu) | [Soul Jumper](https://github.com/kunjgit/GameZone/tree/main/Games/Soul_Jumper) | [Infernal Throne](https://github.com/kunjgit/GameZone/tree/main/Games/Infernal_Throne) | -| [Dead Again](https://github.com/kunjgit/GameZone/tree/main/Games/Dead_Again) | [Norman The Necromancer](https://github.com/kunjgit/GameZone/tree/main/Games/Norman_The_Necromancer) | [Shape Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Shape_Blocks) | [Goal_Rush](https://github.com/kunjgit/GameZone/tree/main/Games/Goal_Rush) | [Charon Jr](https://github.com/kunjgit/GameZone/tree/main/Games/Charon_Jr) | -| [Color Shifter](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Shifter) | [Oh, flip](https://github.com/kunjgit/GameZone/tree/main/Games/oh_flip) | [Snake Feeder Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Feeder_Game) | [LOSSST](https://github.com/kunjgit/GameZone/tree/main/Games/LOSSST) | [HangMan](https://github.com/kunjgit/GameZone/tree/main/Games/HangMan) | -| [Bad_Luck_Brian](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Luck_Brian) | [Bad_Depot](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Depot) | [Achluophobia](https://github.com/kunjgit/GameZone/tree/main/Games/Achluophobia) | [Timber_Terry](https://github.com/kunjgit/GameZone/tree/main/Games/Timber_Terry) | [Earth_Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Destroyer) | -| [Lonely Phantom](https://github.com/kunjgit/GameZone/tree/main/Games/Lonely_Phantom) | [Ghost Surf](https://github.com/kunjgit/GameZone/tree/main/Games/Ghost_Surf) | [Sucker](https://github.com/kunjgit/GameZone/tree/main/Games/Sucker) | [Sorades](https://github.com/kunjgit/GameZone/tree/main/Games/Sorades) | [Thirteen](https://github.com/kunjgit/GameZone/tree/main/Games/Thirteen) | -| [The Raising Fighting Spirits](https://github.com/kunjgit/GameZone/tree/main/Games/The_Raising_Fighting_Spirits) | [Green Mahjong](https://github.com/kunjgit/GameZone/tree/main/Games/Green_Mahjong) | [Drag And Drop Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Drag_And_Drop_Puzzle) | [Music Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Music_Guess_Game) | [Tower Of Hanoi](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Of_Hanoi) | -| [Mastermind_Mania](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind_Mania) | [Ludo_4_Player](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_4_Player) | [AirBalloon](https://github.com/kunjgit/GameZone/tree/main/Games/AirBalloon) | [Space Invaders](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Invaders) | [Cut the Rope](https://github.com/kunjgit/GameZone/tree/main/Games/Cut_the_rope) | -| [Caesar&Cipher](https://github.com/kunjgit/GameZone/tree/main/Games/Caesar_Cipher) | [Monster_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Monster_Maker) | [Stolen Sword](https://github.com/kunjgit/GameZone/tree/main/Games/Stolen_Sword) | [Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind) | [Highway 404](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_404) | -| [BullseyeGame](https://github.com/kunjgit/GameZone/tree/main/Games/BullseyeGame) | [Crossword Game](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Game) | [Guess the Correct Logo](https://github.com/shruti-2412/GameZone/tree/main/Games/Guess_The_Correct_Logo) | [Painting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Painting_Game) | [Platform_game_engine](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_game_engine) | -| [Kill_The_Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Kill_The_Bird) | -| [Doppelkopf](https://github.com/kunjgit/GameZone/tree/main/Games/Doppelkopf) | [quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/quiz_game) | [Island Survival](https://github.com/kunjgit/GameZone/tree/main/Games/Island_Survival) | [Linkup Game](https://github.com/kunjgit/GameZone/tree/main/Games/linkup) | [Trivia_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Trivia_Card) | -| [Insect Catch Game](https://github.com/kunjgit/GameZone/tree/main/Games/Insect_Catch_Game) | [Carnival_game](https://github.com/kunjgit/GameZone/tree/main/Games/Carnival_game) | [Make Me Laugh](https://github.com/kunjgit/GameZone/tree/main/Games/Make_Me_Laugh) | [Avoider_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Avoider_Game) | [Dungeon_Crawler](https://github.com/kunjgit/GameZone/tree/main/Games/Dungeon_Crawler) | -| [snake_water_gun](https://github.com/kunjgit/GameZone/tree/main/Games/snake_water_gun) | [Run and Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Run_and_Jump) | [AI CHESS Game](https://github.com/kunjgit/GameZone/tree/main/Games/AI_CHESS_Game) | [Fruit_Catching](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching) | [Bulls eye](https://github.com/kunjgit/GameZone/tree/main/Games/Bulls_eye) | -| [Crystals_Collecter](https://github.com/kunjgit/GameZone/tree/main/Games/Crystals_Collecter) | [Dots and Boxes Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dots_and_Boxes_Game) | [Infinite Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Infinite_Runner_Game) | [Mario_Matching](https://github.com/kunjgit/GameZone/tree/main/Games/mario_matching_game) | [Hand_Cricket](https://github.com/kunjgit/GameZone/tree/main/Games/Hand_Cricket) | -| [Crossword_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Puzzle) | [Pixel_Painter](https://github.com/kunjgit/GameZone/tree/main/Games/Pixel_Painter) | [Riddle_Room](https://github.com/kunjgit/GameZone/tree/main/Games/Riddle_Room) | [ArmorAlley](https://github.com/kunjgit/GameZone/tree/main/Games/ArmorAlley) | [Color_switcher](https://github.com/kunjgit/GameZone/tree/main/Games/Color_switcher) | -| [Maze of Cables](https://github.com/VSatwika/GameZonefork/tree/Maze_of_Cables/Games/Maze_of_Cables) | [Escape Room](https://github.com/kunjgit/GameZone/tree/main/Games/Escape_room) | [Super_mario_run](https://github.com/kunjgit/GameZone/tree/main/Games/Super_mario_run) | [Doodle_Draw](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Draw) | [Arcade_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arcade_Game) | -| [Slice Storm](https://github.com/VSatwika/GameZonefork/tree/Slice_Storm/Games/Slice_Storm) | [CodePen_SImulator](https://github.com/kunjgit/GameZone/tree/main/Games/CodePen_Simulator) | [Piano_Tiles](https://github.com/kunjgit/GameZone/tree/main/Games/PianoTiles_Game) | [CareTaker](https://github.com/kunjgit/GameZone/tree/main/Games/CareTaker) | [UNO](https://github.com/kunjgit/GameZone/tree/main/Games/UNO) | -| [Remeber the color](https://github.com/kunjgit/GameZone/tree/main/Games/Remember_the_color) | [Guess The Random Shape](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Random_Shape) | [Save Doraemon](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Doraemon) | [Animal_Match_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Animal_Match_Game) | [Hextris](https://github.com/kunjgit/GameZone/tree/main/Games/Hextris) | -| [MrFakeGame](https://github.com/kunjgit/GameZone/tree/main/Games/MrFakeGame) | [Checkers](https://github.com/kunjgit/GameZone/tree/main/Games/Checkers) | [Roulette](https://github.com/kunjgit/GameZone/tree/main/Games/Roulette) | [Aero Acrobat](https://github.com/kunjgit/GameZone/tree/main/Games/Aero_Acrobat) | [Adventure_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Adventure_Game) | -| [Pumpkin_Pursuit](https://github.com/kunjgit/GameZone/tree/main/Games/Pumpkin_Pursuit) | [Corona Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Corona_Shooter) | [Pokemon Ball Finder](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Ball_Finder) | [Basketball](https://github.com/kunjgit/GameZone/tree/main/Games/Basketball) | [Wault_master](https://github.com/kunjgit/GameZone/tree/main/Games/Wault_master) | -| [Reaction TIme](https://github.com/kunjgit/GameZone/tree/main/Games/Reaction_Time) | [Flag Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flag_Guess_Game) | [Cross_The_Road](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_Road) | [Highway Race - Barrel Dodge](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_Race) | [Bit_Maze_Platformer_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Bit_Maze_Platformer_Maze) | -| [Math Game](https://github.com/kunjgit/GameZone/tree/main/Games/Math_Game) | [Space Drifter](https://github.com/kunjgit/GameZone/tree/main/Games/space_drifter) | [Observe the Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Observe%20the%20Cloud) | [Cosmic_Coin_Blaster](https://github.com/kunjgit/GameZone/tree/main/Games/Cosmic_Coin_Blaster) | [Circus Charly](https://github.com/kunjgit/GameZone/tree/main/Games/Circus_Charly) | -| [Pikachu_Volleyball](https://github.com/kunjgit/GameZone/tree/main/Games/Pikachu_Volleyball) | [Trex_Run](https://github.com/akankshachanana1/GameZone/tree/Added/Games/Trex_Run) | [Crack_The_Code](https://github.com/kunjgit/GameZone/tree/main/Games/Crack_The_Code) | [Skeleathon](https://github.com/kunjgit/GameZone/tree/main/Games/Skeleathon) | [Shadow_PokeGuess](https://github.com/kunjgit/GameZone/tree/main/Games/Shadow_PokeGuess) | -| [Brain Color Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Color_Mastermind) | [Lizard Spock Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lizard_Spock_Game) | [Angry Boars](https://github.com/kunjgit/GameZone/tree/main/Games/Angry_Boars) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet_Learning_Game) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | -| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/main/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Alphabet_Learning_Game) | -| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Death by Hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Death_by_Hamster) | -| [Tenzies](https://github.com/kunjgit/GameZone/tree/main/Games/Tenzies) | [Target_Torrent](https://github.com/kunjgit/GameZone/tree/main/Games/Target_Torrent) | [Reversi](https://github.com/kunjgit/GameZone/tree/main/Games/Reversi) | [reaction_teaser](https://github.com/kunjgit/GameZone/pull/2134/files) | [Scribble](https://github.com/kunjgit/GameZone/tree/main/Games/Scribble) | -| [Brain Burst Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Burst_Game) | [StickTheSticker](https://github.com/kunjgit/GameZone/tree/main/Games/StickTheSticker) | [Meme_Battle_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Meme_Battle_Game) | [Match_Color_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Match_Color_Game) | [Bow_And_Arrow](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_And_Arrow) | -| [Beyblade](https://github.com/kunjgit/GameZone/tree/main/Games/Beyblade) | [The labyrinth of death](https://github.com/sahaycodes/GameZone/tree/meme/Games/The_labyrinth_of_death) | [2D BreakOut](https://github.com/kunjgit/GameZone/tree/main/Games/2D_Breakout) | [Battleship](https://github.com/kunjgit/GameZone/tree/main/Games/Battleship) | [Baseball](https://github.com/kunjgit/GameZone/tree/main/Games/Baseball) | -| [Save Princess](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Princess) | [RoadFighter](https://github.com/kunjgit/GameZone/tree/main/Games/RoadFighter) | [Guitar Game](https://github.com/kunjgit/GameZone/tree/main/Games/Guitar_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire) | [Lady Tiger Hunter](https://github.com/kunjgit/GameZone/tree/main/Games/Lady_Tiger_Hunter) | -| [Stone Paper Scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Stone_paper_scissor) | [Flashlight_Pointer_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flashlight_Pointer_Game) | [Pig game](https://github.com/KanchanBora/GameZone/tree/main/Games/Pig_game) | [Asteroids 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Asteroids_3D) | [Lamb Lane](https://github.com/sahaycodes/GameZone/tree/meme/Games/Lamb_Lane) | -| [Dinoffline](https://github.com/kunjgit/GameZone/tree/main/Games/Dinoffline) | [Maths Sprint Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maths_Sprint_Game) | [Etch a Sketch](https://github.com/kunjgit/GameZone/tree/main/Games/Etch_a_Sketch) | [QuizzApp](https://github.com/kunjgit/GameZone/tree/main/Games/QuizzApp) | [Chess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game) | -| [Which Color](https://github.com/sahaycodes/GameZone/tree/main/Games/Which_Color) | [Snail_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Snail_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire_up) | [Slime Attack](https://github.com/apu52/GameZone/tree/Slime-Attack-game/Games/Slime_attack_game) | [Star_Trek_Trivia](https://github.com/kunjgit/GameZone/tree/starTrek-trivia/Games/Star_Trek_Trivia) | -| [Pokemon_Card_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Card_Game) | [Digit Dilemma](https://github.com/kunjgit/GameZone/tree/main/Games/Digit_Dilemma) | [Tennis](https://github.com/kunjgit/GameZone/tree/main/Games/Tennis) | [Illusion](https://github.com/kunjgit/GameZone/tree/main/Games/Illusion) | [Block Buster](https://github.com/sahaycodes/GameZone/tree/meme/Games/Block_Buster) | -| [Guess_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Ball) | [Doremon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Doremon_Puzzle) | [Guess The Celebrity](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Celeb) | [Rock_Paper_Scissors_Lizard_Spock](https://github.com/kunjgit/GameZone/tree/main/Rock_Paper_Scissors_Lizard_Spock) | [Elemental Riddles](https://github.com/kunjgit/GameZone/tree/main/Elemental_Riddles) | -| [Falling_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Ball) | [Hit Target](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_Target) | [Archery](https://github.com/kunjgit/GameZone/tree/main/Games/Archery) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | -| [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | -| [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [Code Cracker](https://github.com/kunjgit/GameZone/tree/main/Code_Cracker) | [Know Your Country](https://github.com/kunjgit/GameZone/tree/main/Games/Know_Your_Country) | [Musical_Floor](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Floor) | [Sky_Dodge](https://github.com/kunjgit/GameZone/tree/main/Sky_Dodge) | -| [Swap Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Swap-Card-Game) | [Memorization_card](https://github.com/kunjgit/GameZone/tree/main/Games/Memorization_card) | [Smashing_Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Smashing_Blocks) | [Response_Reaction](https://github.com/kunjgit/GameZone/tree/main/Games/Response_Reaction) | [Truth and Dare](https://github.com/kunjgit/GameZone/tree/main/Games/Truth_And_Dare) | -| [Rotating_Elements](https://github.com/tanujbordikar/GameZone/tree/Rotating_Elements) | [Chopsticks](https://github.com/kunjgit/GameZone/tree/main/Games/Chopsticks) | [Anime Clicker](https://github.com/kunjgit/GameZone/tree/main/Games/Anime_Clicker) | [3D Snake](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Snake) | [Rocket_Showdown](https://github.com/tanujbordikar/GameZone/tree/Rocket_Showdown) | -| [Find Extra Cube](https://github.com/kunjgit/GameZone/tree/main/Games/Find_Extra_Cube) | [PathPlex](https://github.com/kunjgit/GameZone/tree/main/Games/Pathplex) | [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [CSS Crossword](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Crossword) | -| [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [Flip Coin](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Coin) | [Witty Word Quest](https://github.com/kunjgit/GameZone/tree/main/Games/witty_word_quest) | [Typing Game](https://github.com/Ishan-77/GameZone/tree/main/Games/Typing_Game) | -| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | - -| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) -| [Tic Tac Toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe_Game)| | | -| [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Color_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Blast) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). | -| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Audio_Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Audio_Wordle) | [Makeover_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Makeover_Game) -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). -| [Wordling](https://github.com/kunjgit/GameZone/tree/main/Games/Wordling) +| [Master Typing](https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing) | [Treasure Hunt](https://github.com/Antiquely3059/GameZone/tree/main/Games/Treasure%20Hunt) | [Virtual Pet](https://github.com/Antiquely3059/GameZone/tree/main/Games/Virtual_Pet) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | | +| [Tilting Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Tilting_Maze) | [Simon Game Challenge](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Game_Challenge) | [Snake Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Game) | [Dino Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dino_Runner_Game) | +| [Whack a Mole](https://github.com/kunjgit/GameZone/tree/main/Games/Whack_a_Mole) | [Doraemon Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doraemon_Jump) | [Black Jack](https://github.com/kunjgit/GameZone/tree/main/Games/Black_Jack) | [Memory Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Game) | [Word Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Guessing_Game) | +| [Ludo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_Game) | [Piano Game](https://github.com/kunjgit/GameZone/tree/main/Games/Piano) | [Atari Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Atari_Breakout) | [Dinosaur Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dinosaur_Game) | [Guess The Colour by RGB Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Guessing_Game) | +| [Guess The Number](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Number) | [Race car game](https://github.com/kunjgit/GameZone/tree/main/Games/race_car) | [Aim Training](https://github.com/DP-NOTHING/GameZone/tree/contri/Games/Aim_Training) | [Alien Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Alien_Shooters) | [Fruit Ninja](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Ninja) | +| [Doodle Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Jump) | [Alphabet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet) | [Candy Crush](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush) | [Word Association Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Association_Game) | [Tic Tac Toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe) | +| [Flappy Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flappy_Bird) | [Trivia It](https://hithub.com/kunjgit/GameZone/tree/main/Games/Trivia_It) | [Minesweeper](https://github.com/kunjgit/GameZone/tree/main/Games/Minesweeper) | [Dice ShowDown Game](https://github.com/Himanshu07-debug/GameZone/tree/main/Games/Dice_Showdown_Game) | [Pac Man Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pac_Man_Game) | +| [Brick Breaker Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick_Breaker) | [Magic Square Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_Square) | [Fight Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fight_Game) | [Lighthouse Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lighthouse) | [Lights Out Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lights_Out) | +| [Word Scramble Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Scramble_Game) | [Tetris](https://github.com/kunjgit/GameZone/tree/main/Games/Tetris) | [Interactive Quizzing Application](https://github.com/kunjgit/GameZone/tree/main/Games/Interactive_Quizzing) | [Planet Defense Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Defense) | [Rabbit Rush Game](https://github.com/kunjgit/GameZone/tree/main/Games/Rabbit_Rush) | +| [Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Wordle) | [Roll Race Game](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_Race) | [Menja Game](https://github.com/kunjgit/GameZone/tree/main/Games/Menja) | [Typing Speed Test Game](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test_Game) | [Tile Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tile_Game) | +| [Stick Hero Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stick_Hero_Game) | [Starwars Character Game](https://github.com/kunjgit/GameZone/tree/main/Games/Starwars_Character_Game) | [Traffic Run](https://github.com/kunjgit/GameZone/tree/main/Games/Traffic_Run) | [Love Result Predictor](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Result_Predictor) | [Tower Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Defense) | +| [Menja_block_breaker](https://github.com/kunjgit/GameZone/tree/main/Games/Menja_block_breaker) | | [Yahtzee](https://github.com/kunjgit/GameZone/tree/main/Games/Yahtzee) | +| [Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bird_game) | [Bubble Blast Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Blast_Game) | [Emoji Charades](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Charades) | [Drum And Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Drum_Kit_Game) | [Rock Paper Scissors](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors) | +| [Frogger](https://github.com/kunjgit/GameZone/tree/main/Games/Frogger) | [!morethan5 ](https://github.com/kunjgit/GameZone/tree/main/Games/Not_morethan5) | [Unruly Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Unruly_Tower) | [Maze Game](https://github.com/kunjgit/GameZone/tree/main/Games/MazeGame) | [Connect4](https://github.com/kunjgit/GameZone/tree/main/Games/Connect4) | +| [Spelling_Bee](https://github.com/kunjgit/GameZone/tree/main/Games/Spelling_Bee) | [2048](https://github.com/kunjgit/GameZone/tree/main/Games/2048) | [Spin the Wheel](https://github.com/kunjgit/GameZone/tree/main/Games/Spin_the_wheel) | [Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Breakout) | [Tower Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Blocks) | +| [Platform Game](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_Game) | [Red Light Green Light](https://github.com/kunjgit/GameZone/tree/main/Games/Red_Light_Green_Light) | [Squash your Enemy](https://github.com/kunjgit/GameZone/tree/main/Games/Squashing_your_Enemy) | [Avax Gods](https://github.com/kunjgit/GameZone/tree/main/Games/Avax_gods) | [Flip Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Card_Game) | +| [Bingo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bingo_Game) | [Fifteen Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fifteen_Puzzle_Game) | [Stack_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stack_Game) | [Block.io_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Block.io) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | +| [Touch_The_Ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Touch_The_Ball) | [Sudoku](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku) | [Mini Golf](https://github.com/kunjgit/GameZone/tree/main/Games/Mini_Golf) | [Rubik's solver](https://github.com/kunjgit/GameZone/tree/main/Games/Rubik's_solver) | [Shoot_The_Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_The_Balloon) | +| [Dont_Die_To_Ghosts](https://github.com/kunjgit/GameZone/tree/main/Games/Dont_Die_To_Ghosts) | [SciFi Alchemy](https://github.com/kunjgit/GameZone/tree/main/Games/SciFi_Alchemy) | [Packabunchas](https://github.com/kunjgit/GameZone/tree/main/Games/Packabunchas) | [Cast and Catch](https://github.com/Sheetal-05/GameZone/tree/main/Games/Cast_and_Catch) | [Track Not Found](https://github.com/kunjgit/GameZone/tree/main/Games/Track_Not_Found) | +| [Love Calculator Game](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Calci) | [Planet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Game) | [Snake Ladder](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Ladder) | [Among Us Game](https://github.com/kunjgit/GameZone/tree/main/Games/Among_Us_Game) | [Pokedex Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokedex) | +| [Pacific Air Battle](https://github.com/kunjgit/GameZone/tree/main/Games/Pacific_Air_Battle) | [Dante](https://github.com/kunjgit/GameZone/tree/main/Games/Dante) | [Ping Pong Multiplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Multiplayer) | [Sonic The Hedgehog](https://github.com/kunjgit/GameZone/tree/main/Games/Sonic_The_Hedgehog) | [World Of Emojis](https://github.com/kunjgit/GameZone/tree/main/Games/World_Of_Emojis) | +| [Ball Fall Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Fall_Game) | [Pinball](https://github.com/kunjgit/GameZone/tree/main/Games/Pinball) | [Duck_Hunting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Duck_Hunting_Game) | [Color Turner](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Turner) | [Catch the Bunny](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_the_Bunny) | +| [Catch me game](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_me_game) | [Blank Detective](https://github.com/kunjgit/GameZone/tree/main/Games/Blanks_Detective) | [Falling Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Blocks) | [Movie Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Movie_Guessing_Game) | [Wildcard Bonanza](https://github.com/kunjgit/GameZone/tree/main/Games/Wildcard_Bonanza) | +| [The Last Spartan](https://github.com/kunjgit/GameZone/tree/main/Games/The_Last_Spartan) | [Space Exploration](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Exploration) | [Bow Arrow Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_Arrow) | [I Want To Google The Game](https://github.com/kunjgit/GameZone/tree/main/Games/I_Want_To_Google_The_Game) | [Space Gun](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Gun) | +| [Space Huggers](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Huggers) | [Spaceship Escort](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceship_Escort) | [Space Defence](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Defence) | [Glitch Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Glitch_Buster) | [3D Box Game](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Box_Game) | +| [Escape](https://github.com/kunjgit/GameZone/tree/main/Games/Escape) | [Retro Dungeon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Retro_Dungeon_Puzzle) | [Immunity Collapse](https://github.com/kunjgit/GameZone/tree/main/Games/Immunity_Collapse) | [Hunt Your Card](https://github.com/kunjgit/GameZone/tree/main/Games/Hunt_Your_Card) | [Tenacity](https://github.com/kunjgit/GameZone/tree/main/Games/Tenacity) | +| [Emoji Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Puzzle_Game) | [Back To Space](https://github.com/kunjgit/GameZone/tree/main/Games/Back_To_Space) | [Snooze](https://github.com/kunjgit/GameZone/tree/main/Games/Snooze) | [Galaxy Rider](https://github.com/kunjgit/GameZone/tree/main/Games/Galaxy_Rider) | [Squared Lines](https://github.com/kunjgit/GameZone/tree/main/Games/Squared_Lines) | +| [Space War](https://github.com/kunjgit/GameZone/tree/main/Games/Space_War) | [Sciara of Colors](https://github.com/kunjgit/GameZone/tree/main/Games/Sciara_Of_Colors) | [JunoJs](https://github.com/kunjgit/GameZone/tree/main/Games/JunoJs) | [Fall Down](https://github.com/kunjgit/GameZone/tree/main/Games/Fall_Down) | [Cat Goric](https://github.com/kunjgit/GameZone/tree/main/Games/Cat_Goric) | +| [Cable Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Cable_Maze) | [Spaceducts](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceducts) | [Zurbo](https://github.com/kunjgit/GameZone/tree/main/Games/Zurbo) | [Blast Zone](https://github.com/kunjgit/GameZone/tree/main/Games/BlastZone) | [Free Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Free_Bird) | +| [Maximise Boxes](https://github.com/kunjgit/GameZone/tree/main/Games/MaximiseBoxes) | [Slide Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Slide_Puzzle) | [Diamond Run](https://github.com/kunjgit/GameZone/tree/main/Games/Diamond_Run) | [Everyones Sky](https://github.com/kunjgit/GameZone/tree/main/Games/Everyones_Sky) | [Line Of Fire](https://github.com/kunjgit/GameZone/tree/main/Games/Line_Of_Fire) | +| [1024 Moves](https://github.com/kunjgit/GameZone/tree/main/Games/1024_Moves) | [Save The Forest](https://github.com/kunjgit/GameZone/tree/main/Games/Save_The_Forest) | [Dragon World Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_World_Game) | [DuckHunt](https://github.com/kunjgit/GameZone/tree/main/Games/DuckHunt) | [Plankman](https://github.com/kunjgit/GameZone/tree/main/Games/Plankman) | +| [Hold The Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Hold_The_Cloud) | [Labyrinth](https://github.com/kunjgit/GameZone/tree/main/Games/Labyrinth) | [RIP](https://github.com/kunjgit/GameZone/tree/main/Games/RIP) | [Risky Nav](https://github.com/kunjgit/GameZone/tree/main/Games/Risky_Nav) | [Pixels From Space](https://github.com/kunjgit/GameZone/tree/main/Games/Pixels_From_Space) | +| [Poker_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Poker_Dice) | [Unlock_The_Lock](https://github.com/kunjgit/GameZone/tree/main/Games/Unlock_The_Lock) | [Gnomedom](https://github.com/kunjgit/GameZone/tree/main/Games/Gnomedom) | [Lost In The Maze 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Lost_In_The_Maze_3D) | [PONG BALL](https://github.com/kunjgit/GameZone/tree/main/Games/Pong_Ball) | +| [Projectile Motion Game](https://github.com/kunjgit/GameZone/tree/main/Games/Projectile_Motion_Game) | [Swift](https://github.com/kunjgit/GameZone/tree/main/Games/Swift) | [Spacepi](https://github.com/kunjgit/GameZone/tree/main/Games/Spacepi) | [Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Destroyer) | [Terror_Seventy](https://github.com/kunjgit/GameZone/tree/main/Games/Terror_Seventy) | +| [Humming](https://github.com/kunjgit/GameZone/tree/main/Games/Humming) | [Word Search Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Word_search_puzzle) | [Ballarena](https://github.com/kunjgit/GameZone/tree/main/Games/Ballarena) | [Beyonder](https://github.com/kunjgit/GameZone/tree/main/Games/Beyonder) | [Shpere](https://github.com/kunjgit/GameZone/tree/main/Games/Shpere) | +| [Short Circuit](https://github.com/kunjgit/GameZone/tree/main/Games/Short_Circuit) | [Johnny Smiter](https://github.com/kunjgit/GameZone/tree/main/Games/Johnny_Smiter) | [Rectangular](https://github.com/kunjgit/GameZone/tree/main/Games/Rectangular) | [Canon Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Canon_Defense) | [Trashem](https://github.com/kunjgit/GameZone/tree/main/Games/Trashem) | +| [Chess](https://github.com/SoarinSkySagar/GameZone-GSSoC23/tree/main/Games/CHESS) | [Get The Pigeon](https://github.com/kunjgit/GameZone/tree/main/Games/Get_The_Pigeon) | [Uxu](https://github.com/kunjgit/GameZone/tree/main/Games/Uxu) | [Soul Jumper](https://github.com/kunjgit/GameZone/tree/main/Games/Soul_Jumper) | [Infernal Throne](https://github.com/kunjgit/GameZone/tree/main/Games/Infernal_Throne) | +| [Dead Again](https://github.com/kunjgit/GameZone/tree/main/Games/Dead_Again) | [Norman The Necromancer](https://github.com/kunjgit/GameZone/tree/main/Games/Norman_The_Necromancer) | [Shape Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Shape_Blocks) | [Goal_Rush](https://github.com/kunjgit/GameZone/tree/main/Games/Goal_Rush) | [Charon Jr](https://github.com/kunjgit/GameZone/tree/main/Games/Charon_Jr) | +| [Color Shifter](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Shifter) | [Oh, flip](https://github.com/kunjgit/GameZone/tree/main/Games/oh_flip) | [Snake Feeder Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Feeder_Game) | [LOSSST](https://github.com/kunjgit/GameZone/tree/main/Games/LOSSST) | [HangMan](https://github.com/kunjgit/GameZone/tree/main/Games/HangMan) | +| [Bad_Luck_Brian](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Luck_Brian) | [Bad_Depot](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Depot) | [Achluophobia](https://github.com/kunjgit/GameZone/tree/main/Games/Achluophobia) | [Timber_Terry](https://github.com/kunjgit/GameZone/tree/main/Games/Timber_Terry) | [Earth_Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Destroyer) | +| [Lonely Phantom](https://github.com/kunjgit/GameZone/tree/main/Games/Lonely_Phantom) | [Ghost Surf](https://github.com/kunjgit/GameZone/tree/main/Games/Ghost_Surf) | [Sucker](https://github.com/kunjgit/GameZone/tree/main/Games/Sucker) | [Sorades](https://github.com/kunjgit/GameZone/tree/main/Games/Sorades) | [Thirteen](https://github.com/kunjgit/GameZone/tree/main/Games/Thirteen) | +| [The Raising Fighting Spirits](https://github.com/kunjgit/GameZone/tree/main/Games/The_Raising_Fighting_Spirits) | [Green Mahjong](https://github.com/kunjgit/GameZone/tree/main/Games/Green_Mahjong) | [Drag And Drop Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Drag_And_Drop_Puzzle) | [Music Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Music_Guess_Game) | [Tower Of Hanoi](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Of_Hanoi) | +| [Mastermind_Mania](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind_Mania) | [Ludo_4_Player](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_4_Player) | [AirBalloon](https://github.com/kunjgit/GameZone/tree/main/Games/AirBalloon) | [Space Invaders](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Invaders) | [Cut the Rope](https://github.com/kunjgit/GameZone/tree/main/Games/Cut_the_rope) | +| [Caesar&Cipher](https://github.com/kunjgit/GameZone/tree/main/Games/Caesar_Cipher) | [Monster_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Monster_Maker) | [Stolen Sword](https://github.com/kunjgit/GameZone/tree/main/Games/Stolen_Sword) | [Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind) | [Highway 404](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_404) | +| [BullseyeGame](https://github.com/kunjgit/GameZone/tree/main/Games/BullseyeGame) | [Crossword Game](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Game) | [Guess the Correct Logo](https://github.com/shruti-2412/GameZone/tree/main/Games/Guess_The_Correct_Logo) | [Painting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Painting_Game) | [Platform_game_engine](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_game_engine) | +| [Kill_The_Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Kill_The_Bird) | +| [Doppelkopf](https://github.com/kunjgit/GameZone/tree/main/Games/Doppelkopf) | [quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/quiz_game) | [Island Survival](https://github.com/kunjgit/GameZone/tree/main/Games/Island_Survival) | [Linkup Game](https://github.com/kunjgit/GameZone/tree/main/Games/linkup) | [Trivia_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Trivia_Card) | +| [Insect Catch Game](https://github.com/kunjgit/GameZone/tree/main/Games/Insect_Catch_Game) | [Carnival_game](https://github.com/kunjgit/GameZone/tree/main/Games/Carnival_game) | [Make Me Laugh](https://github.com/kunjgit/GameZone/tree/main/Games/Make_Me_Laugh) | [Avoider_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Avoider_Game) | [Dungeon_Crawler](https://github.com/kunjgit/GameZone/tree/main/Games/Dungeon_Crawler) | +| [snake_water_gun](https://github.com/kunjgit/GameZone/tree/main/Games/snake_water_gun) | [Run and Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Run_and_Jump) | [AI CHESS Game](https://github.com/kunjgit/GameZone/tree/main/Games/AI_CHESS_Game) | [Fruit_Catching](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching) | [Bulls eye](https://github.com/kunjgit/GameZone/tree/main/Games/Bulls_eye) | +| [Crystals_Collecter](https://github.com/kunjgit/GameZone/tree/main/Games/Crystals_Collecter) | [Dots and Boxes Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dots_and_Boxes_Game) | [Infinite Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Infinite_Runner_Game) | [Mario_Matching](https://github.com/kunjgit/GameZone/tree/main/Games/mario_matching_game) | [Hand_Cricket](https://github.com/kunjgit/GameZone/tree/main/Games/Hand_Cricket) | +| [Crossword_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Puzzle) | [Pixel_Painter](https://github.com/kunjgit/GameZone/tree/main/Games/Pixel_Painter) | [Riddle_Room](https://github.com/kunjgit/GameZone/tree/main/Games/Riddle_Room) | [ArmorAlley](https://github.com/kunjgit/GameZone/tree/main/Games/ArmorAlley) | [Color_switcher](https://github.com/kunjgit/GameZone/tree/main/Games/Color_switcher) | +| [Maze of Cables](https://github.com/VSatwika/GameZonefork/tree/Maze_of_Cables/Games/Maze_of_Cables) | [Escape Room](https://github.com/kunjgit/GameZone/tree/main/Games/Escape_room) | [Super_mario_run](https://github.com/kunjgit/GameZone/tree/main/Games/Super_mario_run) | [Doodle_Draw](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Draw) | [Arcade_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arcade_Game) | +| [Slice Storm](https://github.com/VSatwika/GameZonefork/tree/Slice_Storm/Games/Slice_Storm) | [CodePen_SImulator](https://github.com/kunjgit/GameZone/tree/main/Games/CodePen_Simulator) | [Piano_Tiles](https://github.com/kunjgit/GameZone/tree/main/Games/PianoTiles_Game) | [CareTaker](https://github.com/kunjgit/GameZone/tree/main/Games/CareTaker) | [UNO](https://github.com/kunjgit/GameZone/tree/main/Games/UNO) | +| [Remeber the color](https://github.com/kunjgit/GameZone/tree/main/Games/Remember_the_color) | [Guess The Random Shape](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Random_Shape) | [Save Doraemon](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Doraemon) | [Animal_Match_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Animal_Match_Game) | [Hextris](https://github.com/kunjgit/GameZone/tree/main/Games/Hextris) | +| [MrFakeGame](https://github.com/kunjgit/GameZone/tree/main/Games/MrFakeGame) | [Checkers](https://github.com/kunjgit/GameZone/tree/main/Games/Checkers) | [Roulette](https://github.com/kunjgit/GameZone/tree/main/Games/Roulette) | [Aero Acrobat](https://github.com/kunjgit/GameZone/tree/main/Games/Aero_Acrobat) | [Adventure_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Adventure_Game) | +| [Pumpkin_Pursuit](https://github.com/kunjgit/GameZone/tree/main/Games/Pumpkin_Pursuit) | [Corona Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Corona_Shooter) | [Pokemon Ball Finder](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Ball_Finder) | [Basketball](https://github.com/kunjgit/GameZone/tree/main/Games/Basketball) | [Wault_master](https://github.com/kunjgit/GameZone/tree/main/Games/Wault_master) | +| [Reaction TIme](https://github.com/kunjgit/GameZone/tree/main/Games/Reaction_Time) | [Flag Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flag_Guess_Game) | [Cross_The_Road](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_Road) | [Highway Race - Barrel Dodge](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_Race) | [Bit_Maze_Platformer_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Bit_Maze_Platformer_Maze) | +| [Math Game](https://github.com/kunjgit/GameZone/tree/main/Games/Math_Game) | [Space Drifter](https://github.com/kunjgit/GameZone/tree/main/Games/space_drifter) | [Observe the Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Observe%20the%20Cloud) | [Cosmic_Coin_Blaster](https://github.com/kunjgit/GameZone/tree/main/Games/Cosmic_Coin_Blaster) | [Circus Charly](https://github.com/kunjgit/GameZone/tree/main/Games/Circus_Charly) | +| [Pikachu_Volleyball](https://github.com/kunjgit/GameZone/tree/main/Games/Pikachu_Volleyball) | [Trex_Run](https://github.com/akankshachanana1/GameZone/tree/Added/Games/Trex_Run) | [Crack_The_Code](https://github.com/kunjgit/GameZone/tree/main/Games/Crack_The_Code) | [Skeleathon](https://github.com/kunjgit/GameZone/tree/main/Games/Skeleathon) | [Shadow_PokeGuess](https://github.com/kunjgit/GameZone/tree/main/Games/Shadow_PokeGuess) | +| [Brain Color Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Color_Mastermind) | [Lizard Spock Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lizard_Spock_Game) | [Angry Boars](https://github.com/kunjgit/GameZone/tree/main/Games/Angry_Boars) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet_Learning_Game) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | +| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/main/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Alphabet_Learning_Game) | +| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Death by Hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Death_by_Hamster) | +| [Tenzies](https://github.com/kunjgit/GameZone/tree/main/Games/Tenzies) | [Target_Torrent](https://github.com/kunjgit/GameZone/tree/main/Games/Target_Torrent) | [Reversi](https://github.com/kunjgit/GameZone/tree/main/Games/Reversi) | [reaction_teaser](https://github.com/kunjgit/GameZone/pull/2134/files) | [Scribble](https://github.com/kunjgit/GameZone/tree/main/Games/Scribble) | +| [Brain Burst Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Burst_Game) | [StickTheSticker](https://github.com/kunjgit/GameZone/tree/main/Games/StickTheSticker) | [Meme_Battle_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Meme_Battle_Game) | [Match_Color_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Match_Color_Game) | [Bow_And_Arrow](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_And_Arrow) | +| [Beyblade](https://github.com/kunjgit/GameZone/tree/main/Games/Beyblade) | [The labyrinth of death](https://github.com/sahaycodes/GameZone/tree/meme/Games/The_labyrinth_of_death) | [2D BreakOut](https://github.com/kunjgit/GameZone/tree/main/Games/2D_Breakout) | [Battleship](https://github.com/kunjgit/GameZone/tree/main/Games/Battleship) | [Baseball](https://github.com/kunjgit/GameZone/tree/main/Games/Baseball) | +| [Save Princess](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Princess) | [RoadFighter](https://github.com/kunjgit/GameZone/tree/main/Games/RoadFighter) | [Guitar Game](https://github.com/kunjgit/GameZone/tree/main/Games/Guitar_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire) | [Lady Tiger Hunter](https://github.com/kunjgit/GameZone/tree/main/Games/Lady_Tiger_Hunter) | +| [Stone Paper Scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Stone_paper_scissor) | [Flashlight_Pointer_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flashlight_Pointer_Game) | [Pig game](https://github.com/KanchanBora/GameZone/tree/main/Games/Pig_game) | [Asteroids 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Asteroids_3D) | [Lamb Lane](https://github.com/sahaycodes/GameZone/tree/meme/Games/Lamb_Lane) | +| [Dinoffline](https://github.com/kunjgit/GameZone/tree/main/Games/Dinoffline) | [Maths Sprint Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maths_Sprint_Game) | [Etch a Sketch](https://github.com/kunjgit/GameZone/tree/main/Games/Etch_a_Sketch) | [QuizzApp](https://github.com/kunjgit/GameZone/tree/main/Games/QuizzApp) | [Chess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game) | +| [Which Color](https://github.com/sahaycodes/GameZone/tree/main/Games/Which_Color) | [Snail_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Snail_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire_up) | [Slime Attack](https://github.com/apu52/GameZone/tree/Slime-Attack-game/Games/Slime_attack_game) | [Star_Trek_Trivia](https://github.com/kunjgit/GameZone/tree/starTrek-trivia/Games/Star_Trek_Trivia) | +| [Pokemon_Card_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Card_Game) | [Digit Dilemma](https://github.com/kunjgit/GameZone/tree/main/Games/Digit_Dilemma) | [Tennis](https://github.com/kunjgit/GameZone/tree/main/Games/Tennis) | [Illusion](https://github.com/kunjgit/GameZone/tree/main/Games/Illusion) | [Block Buster](https://github.com/sahaycodes/GameZone/tree/meme/Games/Block_Buster) | +| [Guess_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Ball) | [Doremon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Doremon_Puzzle) | [Guess The Celebrity](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Celeb) | [Rock_Paper_Scissors_Lizard_Spock](https://github.com/kunjgit/GameZone/tree/main/Rock_Paper_Scissors_Lizard_Spock) | [Elemental Riddles](https://github.com/kunjgit/GameZone/tree/main/Elemental_Riddles) | +| [Falling_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Ball) | [Hit Target](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_Target) | [Archery](https://github.com/kunjgit/GameZone/tree/main/Games/Archery) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | +| [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | +| [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [Code Cracker](https://github.com/kunjgit/GameZone/tree/main/Code_Cracker) | [Know Your Country](https://github.com/kunjgit/GameZone/tree/main/Games/Know_Your_Country) | [Musical_Floor](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Floor) | [Sky_Dodge](https://github.com/kunjgit/GameZone/tree/main/Sky_Dodge) | +| [Swap Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Swap-Card-Game) | [Memorization_card](https://github.com/kunjgit/GameZone/tree/main/Games/Memorization_card) | [Smashing_Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Smashing_Blocks) | [Response_Reaction](https://github.com/kunjgit/GameZone/tree/main/Games/Response_Reaction) | [Truth and Dare](https://github.com/kunjgit/GameZone/tree/main/Games/Truth_And_Dare) | +| [Rotating_Elements](https://github.com/tanujbordikar/GameZone/tree/Rotating_Elements) | [Chopsticks](https://github.com/kunjgit/GameZone/tree/main/Games/Chopsticks) | [Anime Clicker](https://github.com/kunjgit/GameZone/tree/main/Games/Anime_Clicker) | [3D Snake](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Snake) | [Rocket_Showdown](https://github.com/tanujbordikar/GameZone/tree/Rocket_Showdown) | +| [Find Extra Cube](https://github.com/kunjgit/GameZone/tree/main/Games/Find_Extra_Cube) | [PathPlex](https://github.com/kunjgit/GameZone/tree/main/Games/Pathplex) | [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [CSS Crossword](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Crossword) | +| [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [Flip Coin](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Coin) | [Witty Word Quest](https://github.com/kunjgit/GameZone/tree/main/Games/witty_word_quest) | [Typing Game](https://github.com/Ishan-77/GameZone/tree/main/Games/Typing_Game) | +| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | + +| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) +| [Tic Tac Toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe_Game)| | | +| [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Color_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Blast) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). | +| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Audio_Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Audio_Wordle) | [Makeover_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Makeover_Game) +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). +| [Wordling](https://github.com/kunjgit/GameZone/tree/main/Games/Wordling) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) | [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Audio_Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Audio_Wordle>>>>>>> main | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | @@ -1289,7 +1281,6 @@ This repository also provides one such platforms where contributers come over an | [Bunny is Lost](https://github.com/kunjgit/GameZone/tree/main/Games/Bunny_is_Lost)| |[Steam_Punk](https://github.com/kunjgit/GameZone/tree/main/Games/Steam_Punk)| - |[OutRun_Offline_Game](https://github.com/kunjgit/GameZone/tree/main/Games/OutRun_Offline_Game)| |[Tower Defence Game](https://github.com/Will2Jacks/GameZoneForked/tree/Task/Games/Tower_Defence_Game)| @@ -1317,118 +1308,119 @@ This repository also provides one such platforms where contributers come over an |[Tic-tac-toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic-tac-toe)| |[Quest_For_Riches](https://github.com/kunjgit/GameZone/tree/main/Games/Quest_For_Riches)| |[Pattern Creation Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pattern_Creation_Game)| - [Magic_8_ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_8_ball) | +[Magic_8_ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_8_ball) | | [Catch_Craze](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_Craze) | | [UNO game with computer](https://github.com/kunjgit/GameZone/tree/main/Games/UNO_game_with_Computer) | |[Dice_Rolling_Simulator](https://github.com/priyashuu/GameZone/tree/main/Games/Dice_rolling_simulator)| |[Space_Dominators](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Dominators)| |[Ninja_Hattori_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ninja_Hattori_Game)| |[Rocket_Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Rocket_Shooter)| -|[Fruity_Fortune](https://github.com/kunjgit/GameZone/tree/main/Games/Fruity_Fortune)| +|[Fruity_Fortune](https://github.com/kunjgit/GameZone/tree/main/Games/Fruity_Fortune)| | [Simon_Says](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Says) | |[Idle_miner](https://github.com/kunjgit/GameZone/tree/main/Games/Idle_miner)| |[Five_Nights_at_Freddys](https://github.com/kunjgit/GameZone/tree/main/Games/Five_Nights_at_Freddys)| |[Snake_Gun_Water](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Gun_Water)| + -| Game | Game | Game | Game | Game | +| Game | Game | Game | Game | Game | | ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | --- | -| [Master Typing](https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing) | [Treasure Hunt](https://github.com/Antiquely3059/GameZone/tree/main/Games/Treasure%20Hunt) | [Virtual Pet](https://github.com/Antiquely3059/GameZone/tree/main/Games/Virtual_Pet) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | | -| [Tilting Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Tilting_Maze) | [Simon Game Challenge](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Game_Challenge) | [Snake Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Game) | [Dino Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dino_Runner_Game) | -| [Whack a Mole](https://github.com/kunjgit/GameZone/tree/main/Games/Whack_a_Mole) | [Doraemon Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doraemon_Jump) | [Black Jack](https://github.com/kunjgit/GameZone/tree/main/Games/Black_Jack) | [Memory Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Game) | [Word Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Guessing_Game) | -| [Ludo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_Game) | [Piano Game](https://github.com/kunjgit/GameZone/tree/main/Games/Piano) | [Atari Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Atari_Breakout) | [Dinosaur Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dinosaur_Game) | [Guess The Colour by RGB Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Guessing_Game) | -| [Guess The Number](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Number) | [Race car game](https://github.com/kunjgit/GameZone/tree/main/Games/race_car) | [Aim Training](https://github.com/DP-NOTHING/GameZone/tree/contri/Games/Aim_Training) | [Alien Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Alien_Shooters) | [Fruit Ninja](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Ninja) | -| [Doodle Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Jump) | [Alphabet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet) | [Candy Crush](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush) | [Word Association Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Association_Game) | [Tic Tac Toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe) | -| [Flappy Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flappy_Bird) | [Trivia It](https://hithub.com/kunjgit/GameZone/tree/main/Games/Trivia_It) | [Minesweeper](https://github.com/kunjgit/GameZone/tree/main/Games/Minesweeper) | [Dice ShowDown Game](https://github.com/Himanshu07-debug/GameZone/tree/main/Games/Dice_Showdown_Game) | [Pac Man Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pac_Man_Game) | -| [Brick Breaker Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick_Breaker) | [Magic Square Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_Square) | [Fight Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fight_Game) | [Lighthouse Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lighthouse) | [Lights Out Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lights_Out) | -| [Word Scramble Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Scramble_Game) | [Tetris](https://github.com/kunjgit/GameZone/tree/main/Games/Tetris) | [Interactive Quizzing Application](https://github.com/kunjgit/GameZone/tree/main/Games/Interactive_Quizzing) | [Planet Defense Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Defense) | [Rabbit Rush Game](https://github.com/kunjgit/GameZone/tree/main/Games/Rabbit_Rush) | -| [Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Wordle) | [Roll Race Game](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_Race) | [Menja Game](https://github.com/kunjgit/GameZone/tree/main/Games/Menja) | [Typing Speed Test Game](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test_Game) | [Tile Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tile_Game) | -| [Stick Hero Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stick_Hero_Game) | [Starwars Character Game](https://github.com/kunjgit/GameZone/tree/main/Games/Starwars_Character_Game) | [Traffic Run](https://github.com/kunjgit/GameZone/tree/main/Games/Traffic_Run) | [Love Result Predictor](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Result_Predictor) | [Tower Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Defense) | -| [Menja_block_breaker](https://github.com/kunjgit/GameZone/tree/main/Games/Menja_block_breaker) | | [Yahtzee](https://github.com/kunjgit/GameZone/tree/main/Games/Yahtzee) | -| [Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bird_game) | [Bubble Blast Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Blast_Game) | [Emoji Charades](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Charades) | [Drum And Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Drum_Kit_Game) | [Rock Paper Scissors](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors) | -| [Frogger](https://github.com/kunjgit/GameZone/tree/main/Games/Frogger) | [!morethan5 ](https://github.com/kunjgit/GameZone/tree/main/Games/Not_morethan5) | [Unruly Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Unruly_Tower) | [Maze Game](https://github.com/kunjgit/GameZone/tree/main/Games/MazeGame) | [Connect4](https://github.com/kunjgit/GameZone/tree/main/Games/Connect4) | -| [Spelling_Bee](https://github.com/kunjgit/GameZone/tree/main/Games/Spelling_Bee) | [2048](https://github.com/kunjgit/GameZone/tree/main/Games/2048) | [Spin the Wheel](https://github.com/kunjgit/GameZone/tree/main/Games/Spin_the_wheel) | [Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Breakout) | [Tower Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Blocks) | -| [Platform Game](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_Game) | [Red Light Green Light](https://github.com/kunjgit/GameZone/tree/main/Games/Red_Light_Green_Light) | [Squash your Enemy](https://github.com/kunjgit/GameZone/tree/main/Games/Squashing_your_Enemy) | [Avax Gods](https://github.com/kunjgit/GameZone/tree/main/Games/Avax_gods) | [Flip Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Card_Game) | -| [Bingo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bingo_Game) | [Fifteen Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fifteen_Puzzle_Game) | [Stack_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stack_Game) | [Block.io_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Block.io) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | -| [Touch_The_Ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Touch_The_Ball) | [Sudoku](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku) | [Mini Golf](https://github.com/kunjgit/GameZone/tree/main/Games/Mini_Golf) | [Rubik's solver](https://github.com/kunjgit/GameZone/tree/main/Games/Rubik's_solver) | [Shoot_The_Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_The_Balloon) | -| [Dont_Die_To_Ghosts](https://github.com/kunjgit/GameZone/tree/main/Games/Dont_Die_To_Ghosts) | [SciFi Alchemy](https://github.com/kunjgit/GameZone/tree/main/Games/SciFi_Alchemy) | [Packabunchas](https://github.com/kunjgit/GameZone/tree/main/Games/Packabunchas) | [Cast and Catch](https://github.com/Sheetal-05/GameZone/tree/main/Games/Cast_and_Catch) | [Track Not Found](https://github.com/kunjgit/GameZone/tree/main/Games/Track_Not_Found) | -| [Love Calculator Game](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Calci) | [Planet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Game) | [Snake Ladder](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Ladder) | [Among Us Game](https://github.com/kunjgit/GameZone/tree/main/Games/Among_Us_Game) | [Pokedex Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokedex) | -| [Pacific Air Battle](https://github.com/kunjgit/GameZone/tree/main/Games/Pacific_Air_Battle) | [Dante](https://github.com/kunjgit/GameZone/tree/main/Games/Dante) | [Ping Pong Multiplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Multiplayer) | [Sonic The Hedgehog](https://github.com/kunjgit/GameZone/tree/main/Games/Sonic_The_Hedgehog) | [World Of Emojis](https://github.com/kunjgit/GameZone/tree/main/Games/World_Of_Emojis) | -| [Ball Fall Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Fall_Game) | [Pinball](https://github.com/kunjgit/GameZone/tree/main/Games/Pinball) | [Duck_Hunting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Duck_Hunting_Game) | [Color Turner](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Turner) | [Catch the Bunny](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_the_Bunny) | -| [Catch me game](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_me_game) | [Blank Detective](https://github.com/kunjgit/GameZone/tree/main/Games/Blanks_Detective) | [Falling Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Blocks) | [Movie Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Movie_Guessing_Game) | [Wildcard Bonanza](https://github.com/kunjgit/GameZone/tree/main/Games/Wildcard_Bonanza) | -| [The Last Spartan](https://github.com/kunjgit/GameZone/tree/main/Games/The_Last_Spartan) | [Space Exploration](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Exploration) | [Bow Arrow Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_Arrow) | [I Want To Google The Game](https://github.com/kunjgit/GameZone/tree/main/Games/I_Want_To_Google_The_Game) | [Space Gun](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Gun) | -| [Space Huggers](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Huggers) | [Spaceship Escort](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceship_Escort) | [Space Defence](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Defence) | [Glitch Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Glitch_Buster) | [3D Box Game](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Box_Game) | -| [Escape](https://github.com/kunjgit/GameZone/tree/main/Games/Escape) | [Retro Dungeon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Retro_Dungeon_Puzzle) | [Immunity Collapse](https://github.com/kunjgit/GameZone/tree/main/Games/Immunity_Collapse) | [Hunt Your Card](https://github.com/kunjgit/GameZone/tree/main/Games/Hunt_Your_Card) | [Tenacity](https://github.com/kunjgit/GameZone/tree/main/Games/Tenacity) | -| [Emoji Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Puzzle_Game) | [Back To Space](https://github.com/kunjgit/GameZone/tree/main/Games/Back_To_Space) | [Snooze](https://github.com/kunjgit/GameZone/tree/main/Games/Snooze) | [Galaxy Rider](https://github.com/kunjgit/GameZone/tree/main/Games/Galaxy_Rider) | [Squared Lines](https://github.com/kunjgit/GameZone/tree/main/Games/Squared_Lines) | -| [Space War](https://github.com/kunjgit/GameZone/tree/main/Games/Space_War) | [Sciara of Colors](https://github.com/kunjgit/GameZone/tree/main/Games/Sciara_Of_Colors) | [JunoJs](https://github.com/kunjgit/GameZone/tree/main/Games/JunoJs) | [Fall Down](https://github.com/kunjgit/GameZone/tree/main/Games/Fall_Down) | [Cat Goric](https://github.com/kunjgit/GameZone/tree/main/Games/Cat_Goric) | -| [Cable Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Cable_Maze) | [Spaceducts](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceducts) | [Zurbo](https://github.com/kunjgit/GameZone/tree/main/Games/Zurbo) | [Blast Zone](https://github.com/kunjgit/GameZone/tree/main/Games/BlastZone) | [Free Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Free_Bird) | -| [Maximise Boxes](https://github.com/kunjgit/GameZone/tree/main/Games/MaximiseBoxes) | [Slide Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Slide_Puzzle) | [Diamond Run](https://github.com/kunjgit/GameZone/tree/main/Games/Diamond_Run) | [Everyones Sky](https://github.com/kunjgit/GameZone/tree/main/Games/Everyones_Sky) | [Line Of Fire](https://github.com/kunjgit/GameZone/tree/main/Games/Line_Of_Fire) | -| [1024 Moves](https://github.com/kunjgit/GameZone/tree/main/Games/1024_Moves) | [Save The Forest](https://github.com/kunjgit/GameZone/tree/main/Games/Save_The_Forest) | [Dragon World Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_World_Game) | [DuckHunt](https://github.com/kunjgit/GameZone/tree/main/Games/DuckHunt) | [Plankman](https://github.com/kunjgit/GameZone/tree/main/Games/Plankman) | -| [Hold The Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Hold_The_Cloud) | [Labyrinth](https://github.com/kunjgit/GameZone/tree/main/Games/Labyrinth) | [RIP](https://github.com/kunjgit/GameZone/tree/main/Games/RIP) | [Risky Nav](https://github.com/kunjgit/GameZone/tree/main/Games/Risky_Nav) | [Pixels From Space](https://github.com/kunjgit/GameZone/tree/main/Games/Pixels_From_Space) | -| [Poker_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Poker_Dice) | [Unlock_The_Lock](https://github.com/kunjgit/GameZone/tree/main/Games/Unlock_The_Lock) | [Gnomedom](https://github.com/kunjgit/GameZone/tree/main/Games/Gnomedom) | [Lost In The Maze 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Lost_In_The_Maze_3D) | [PONG BALL](https://github.com/kunjgit/GameZone/tree/main/Games/Pong_Ball) | -| [Projectile Motion Game](https://github.com/kunjgit/GameZone/tree/main/Games/Projectile_Motion_Game) | [Swift](https://github.com/kunjgit/GameZone/tree/main/Games/Swift) | [Spacepi](https://github.com/kunjgit/GameZone/tree/main/Games/Spacepi) | [Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Destroyer) | [Terror_Seventy](https://github.com/kunjgit/GameZone/tree/main/Games/Terror_Seventy) | -| [Humming](https://github.com/kunjgit/GameZone/tree/main/Games/Humming) | [Word Search Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Word_search_puzzle) | [Ballarena](https://github.com/kunjgit/GameZone/tree/main/Games/Ballarena) | [Beyonder](https://github.com/kunjgit/GameZone/tree/main/Games/Beyonder) | [Shpere](https://github.com/kunjgit/GameZone/tree/main/Games/Shpere) | -| [Short Circuit](https://github.com/kunjgit/GameZone/tree/main/Games/Short_Circuit) | [Johnny Smiter](https://github.com/kunjgit/GameZone/tree/main/Games/Johnny_Smiter) | [Rectangular](https://github.com/kunjgit/GameZone/tree/main/Games/Rectangular) | [Canon Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Canon_Defense) | [Trashem](https://github.com/kunjgit/GameZone/tree/main/Games/Trashem) | -| [Chess](https://github.com/SoarinSkySagar/GameZone-GSSoC23/tree/main/Games/CHESS) | [Get The Pigeon](https://github.com/kunjgit/GameZone/tree/main/Games/Get_The_Pigeon) | [Uxu](https://github.com/kunjgit/GameZone/tree/main/Games/Uxu) | [Soul Jumper](https://github.com/kunjgit/GameZone/tree/main/Games/Soul_Jumper) | [Infernal Throne](https://github.com/kunjgit/GameZone/tree/main/Games/Infernal_Throne) | -| [Dead Again](https://github.com/kunjgit/GameZone/tree/main/Games/Dead_Again) | [Norman The Necromancer](https://github.com/kunjgit/GameZone/tree/main/Games/Norman_The_Necromancer) | [Shape Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Shape_Blocks) | [Goal_Rush](https://github.com/kunjgit/GameZone/tree/main/Games/Goal_Rush) | [Charon Jr](https://github.com/kunjgit/GameZone/tree/main/Games/Charon_Jr) | -| [Color Shifter](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Shifter) | [Oh, flip](https://github.com/kunjgit/GameZone/tree/main/Games/oh_flip) | [Snake Feeder Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Feeder_Game) | [LOSSST](https://github.com/kunjgit/GameZone/tree/main/Games/LOSSST) | [HangMan](https://github.com/kunjgit/GameZone/tree/main/Games/HangMan) | -| [Bad_Luck_Brian](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Luck_Brian) | [Bad_Depot](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Depot) | [Achluophobia](https://github.com/kunjgit/GameZone/tree/main/Games/Achluophobia) | [Timber_Terry](https://github.com/kunjgit/GameZone/tree/main/Games/Timber_Terry) | [Earth_Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Destroyer) | -| [Lonely Phantom](https://github.com/kunjgit/GameZone/tree/main/Games/Lonely_Phantom) | [Ghost Surf](https://github.com/kunjgit/GameZone/tree/main/Games/Ghost_Surf) | [Sucker](https://github.com/kunjgit/GameZone/tree/main/Games/Sucker) | [Sorades](https://github.com/kunjgit/GameZone/tree/main/Games/Sorades) | [Thirteen](https://github.com/kunjgit/GameZone/tree/main/Games/Thirteen) | -| [The Raising Fighting Spirits](https://github.com/kunjgit/GameZone/tree/main/Games/The_Raising_Fighting_Spirits) | [Green Mahjong](https://github.com/kunjgit/GameZone/tree/main/Games/Green_Mahjong) | [Drag And Drop Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Drag_And_Drop_Puzzle) | [Music Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Music_Guess_Game) | [Tower Of Hanoi](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Of_Hanoi) | -| [Mastermind_Mania](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind_Mania) | [Ludo_4_Player](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_4_Player) | [AirBalloon](https://github.com/kunjgit/GameZone/tree/main/Games/AirBalloon) | [Space Invaders](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Invaders) | [Cut the Rope](https://github.com/kunjgit/GameZone/tree/main/Games/Cut_the_rope) | -| [Caesar&Cipher](https://github.com/kunjgit/GameZone/tree/main/Games/Caesar_Cipher) | [Monster_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Monster_Maker) | [Stolen Sword](https://github.com/kunjgit/GameZone/tree/main/Games/Stolen_Sword) | [Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind) | [Highway 404](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_404) | -| [BullseyeGame](https://github.com/kunjgit/GameZone/tree/main/Games/BullseyeGame) | [Crossword Game](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Game) | [Guess the Correct Logo](https://github.com/shruti-2412/GameZone/tree/main/Games/Guess_The_Correct_Logo) | [Painting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Painting_Game) | [Platform_game_engine](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_game_engine) | -| [Kill_The_Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Kill_The_Bird) | -| [Doppelkopf](https://github.com/kunjgit/GameZone/tree/main/Games/Doppelkopf) | [quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/quiz_game) | [Island Survival](https://github.com/kunjgit/GameZone/tree/main/Games/Island_Survival) | [Linkup Game](https://github.com/kunjgit/GameZone/tree/main/Games/linkup) | [Trivia_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Trivia_Card) | -| [Insect Catch Game](https://github.com/kunjgit/GameZone/tree/main/Games/Insect_Catch_Game) | [Carnival_game](https://github.com/kunjgit/GameZone/tree/main/Games/Carnival_game) | [Make Me Laugh](https://github.com/kunjgit/GameZone/tree/main/Games/Make_Me_Laugh) | [Avoider_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Avoider_Game) | [Dungeon_Crawler](https://github.com/kunjgit/GameZone/tree/main/Games/Dungeon_Crawler) | -| [snake_water_gun](https://github.com/kunjgit/GameZone/tree/main/Games/snake_water_gun) | [Run and Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Run_and_Jump) | [AI CHESS Game](https://github.com/kunjgit/GameZone/tree/main/Games/AI_CHESS_Game) | [Fruit_Catching](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching) | [Bulls eye](https://github.com/kunjgit/GameZone/tree/main/Games/Bulls_eye) | -| [Crystals_Collecter](https://github.com/kunjgit/GameZone/tree/main/Games/Crystals_Collecter) | [Dots and Boxes Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dots_and_Boxes_Game) | [Infinite Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Infinite_Runner_Game) | [Mario_Matching](https://github.com/kunjgit/GameZone/tree/main/Games/mario_matching_game) | [Hand_Cricket](https://github.com/kunjgit/GameZone/tree/main/Games/Hand_Cricket) | -| [Crossword_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Puzzle) | [Pixel_Painter](https://github.com/kunjgit/GameZone/tree/main/Games/Pixel_Painter) | [Riddle_Room](https://github.com/kunjgit/GameZone/tree/main/Games/Riddle_Room) | [ArmorAlley](https://github.com/kunjgit/GameZone/tree/main/Games/ArmorAlley) | [Color_switcher](https://github.com/kunjgit/GameZone/tree/main/Games/Color_switcher) | -| [Maze of Cables](https://github.com/VSatwika/GameZonefork/tree/Maze_of_Cables/Games/Maze_of_Cables) | [Escape Room](https://github.com/kunjgit/GameZone/tree/main/Games/Escape_room) | [Super_mario_run](https://github.com/kunjgit/GameZone/tree/main/Games/Super_mario_run) | [Doodle_Draw](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Draw) | [Arcade_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arcade_Game) | -| [Slice Storm](https://github.com/VSatwika/GameZonefork/tree/Slice_Storm/Games/Slice_Storm) | [CodePen_SImulator](https://github.com/kunjgit/GameZone/tree/main/Games/CodePen_Simulator) | [Piano_Tiles](https://github.com/kunjgit/GameZone/tree/main/Games/PianoTiles_Game) | [CareTaker](https://github.com/kunjgit/GameZone/tree/main/Games/CareTaker) | [UNO](https://github.com/kunjgit/GameZone/tree/main/Games/UNO) | -| [Remeber the color](https://github.com/kunjgit/GameZone/tree/main/Games/Remember_the_color) | [Guess The Random Shape](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Random_Shape) | [Save Doraemon](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Doraemon) | [Animal_Match_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Animal_Match_Game) | [Hextris](https://github.com/kunjgit/GameZone/tree/main/Games/Hextris) | -| [MrFakeGame](https://github.com/kunjgit/GameZone/tree/main/Games/MrFakeGame) | [Checkers](https://github.com/kunjgit/GameZone/tree/main/Games/Checkers) | [Roulette](https://github.com/kunjgit/GameZone/tree/main/Games/Roulette) | [Aero Acrobat](https://github.com/kunjgit/GameZone/tree/main/Games/Aero_Acrobat) | [Adventure_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Adventure_Game) | -| [Pumpkin_Pursuit](https://github.com/kunjgit/GameZone/tree/main/Games/Pumpkin_Pursuit) | [Corona Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Corona_Shooter) | [Pokemon Ball Finder](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Ball_Finder) | [Basketball](https://github.com/kunjgit/GameZone/tree/main/Games/Basketball) | [Wault_master](https://github.com/kunjgit/GameZone/tree/main/Games/Wault_master) | -| [Reaction TIme](https://github.com/kunjgit/GameZone/tree/main/Games/Reaction_Time) | [Flag Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flag_Guess_Game) | [Cross_The_Road](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_Road) | [Highway Race - Barrel Dodge](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_Race) | [Bit_Maze_Platformer_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Bit_Maze_Platformer_Maze) | -| [Math Game](https://github.com/kunjgit/GameZone/tree/main/Games/Math_Game) | [Space Drifter](https://github.com/kunjgit/GameZone/tree/main/Games/space_drifter) | [Observe the Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Observe%20the%20Cloud) | [Cosmic_Coin_Blaster](https://github.com/kunjgit/GameZone/tree/main/Games/Cosmic_Coin_Blaster) | [Circus Charly](https://github.com/kunjgit/GameZone/tree/main/Games/Circus_Charly) | -| [Pikachu_Volleyball](https://github.com/kunjgit/GameZone/tree/main/Games/Pikachu_Volleyball) | [Trex_Run](https://github.com/akankshachanana1/GameZone/tree/Added/Games/Trex_Run) | [Crack_The_Code](https://github.com/kunjgit/GameZone/tree/main/Games/Crack_The_Code) | [Skeleathon](https://github.com/kunjgit/GameZone/tree/main/Games/Skeleathon) | [Shadow_PokeGuess](https://github.com/kunjgit/GameZone/tree/main/Games/Shadow_PokeGuess) | -| [Brain Color Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Color_Mastermind) | [Lizard Spock Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lizard_Spock_Game) | [Angry Boars](https://github.com/kunjgit/GameZone/tree/main/Games/Angry_Boars) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet_Learning_Game) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | -| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/main/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Alphabet_Learning_Game) | -| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Death by Hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Death_by_Hamster) | -| [Tenzies](https://github.com/kunjgit/GameZone/tree/main/Games/Tenzies) | [Target_Torrent](https://github.com/kunjgit/GameZone/tree/main/Games/Target_Torrent) | [Reversi](https://github.com/kunjgit/GameZone/tree/main/Games/Reversi) | [reaction_teaser](https://github.com/kunjgit/GameZone/pull/2134/files) | [Scribble](https://github.com/kunjgit/GameZone/tree/main/Games/Scribble) | -| [Brain Burst Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Burst_Game) | [StickTheSticker](https://github.com/kunjgit/GameZone/tree/main/Games/StickTheSticker) | [Meme_Battle_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Meme_Battle_Game) | [Match_Color_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Match_Color_Game) | [Bow_And_Arrow](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_And_Arrow) | -| [Beyblade](https://github.com/kunjgit/GameZone/tree/main/Games/Beyblade) | [The labyrinth of death](https://github.com/sahaycodes/GameZone/tree/meme/Games/The_labyrinth_of_death) | [2D BreakOut](https://github.com/kunjgit/GameZone/tree/main/Games/2D_Breakout) | [Battleship](https://github.com/kunjgit/GameZone/tree/main/Games/Battleship) | [Baseball](https://github.com/kunjgit/GameZone/tree/main/Games/Baseball) | -| [Save Princess](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Princess) | [RoadFighter](https://github.com/kunjgit/GameZone/tree/main/Games/RoadFighter) | [Guitar Game](https://github.com/kunjgit/GameZone/tree/main/Games/Guitar_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire) | [Lady Tiger Hunter](https://github.com/kunjgit/GameZone/tree/main/Games/Lady_Tiger_Hunter) | -| [Stone Paper Scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Stone_paper_scissor) | [Flashlight_Pointer_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flashlight_Pointer_Game) | [Pig game](https://github.com/KanchanBora/GameZone/tree/main/Games/Pig_game) | [Asteroids 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Asteroids_3D) | [Lamb Lane](https://github.com/sahaycodes/GameZone/tree/meme/Games/Lamb_Lane) | -| [Dinoffline](https://github.com/kunjgit/GameZone/tree/main/Games/Dinoffline) | [Maths Sprint Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maths_Sprint_Game) | [Etch a Sketch](https://github.com/kunjgit/GameZone/tree/main/Games/Etch_a_Sketch) | [QuizzApp](https://github.com/kunjgit/GameZone/tree/main/Games/QuizzApp) | [Chess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game) | -| [Which Color](https://github.com/sahaycodes/GameZone/tree/main/Games/Which_Color) | [Snail_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Snail_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire_up) | [Slime Attack](https://github.com/apu52/GameZone/tree/Slime-Attack-game/Games/Slime_attack_game) | [Star_Trek_Trivia](https://github.com/kunjgit/GameZone/tree/starTrek-trivia/Games/Star_Trek_Trivia) | -| [Pokemon_Card_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Card_Game) | [Digit Dilemma](https://github.com/kunjgit/GameZone/tree/main/Games/Digit_Dilemma) | [Tennis](https://github.com/kunjgit/GameZone/tree/main/Games/Tennis) | [Illusion](https://github.com/kunjgit/GameZone/tree/main/Games/Illusion) | [Block Buster](https://github.com/sahaycodes/GameZone/tree/meme/Games/Block_Buster) | -| [Guess_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Ball) | [Doremon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Doremon_Puzzle) | [Guess The Celebrity](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Celeb) | [Rock_Paper_Scissors_Lizard_Spock](https://github.com/kunjgit/GameZone/tree/main/Rock_Paper_Scissors_Lizard_Spock) | [Elemental Riddles](https://github.com/kunjgit/GameZone/tree/main/Elemental_Riddles) | -| [Falling_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Ball) | [Hit Target](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_Target) | [Archery](https://github.com/kunjgit/GameZone/tree/main/Games/Archery) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | -| [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | -| [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [Code Cracker](https://github.com/kunjgit/GameZone/tree/main/Code_Cracker) | [Know Your Country](https://github.com/kunjgit/GameZone/tree/main/Games/Know_Your_Country) | [Musical_Floor](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Floor) | [Sky_Dodge](https://github.com/kunjgit/GameZone/tree/main/Sky_Dodge) | -| [Swap Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Swap-Card-Game) | [Memorization_card](https://github.com/kunjgit/GameZone/tree/main/Games/Memorization_card) | [Smashing_Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Smashing_Blocks) | [Response_Reaction](https://github.com/kunjgit/GameZone/tree/main/Games/Response_Reaction) | [Truth and Dare](https://github.com/kunjgit/GameZone/tree/main/Games/Truth_And_Dare) | -| [Rotating_Elements](https://github.com/tanujbordikar/GameZone/tree/Rotating_Elements) | [Chopsticks](https://github.com/kunjgit/GameZone/tree/main/Games/Chopsticks) | [Anime Clicker](https://github.com/kunjgit/GameZone/tree/main/Games/Anime_Clicker) | [3D Snake](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Snake) | [Rocket_Showdown](https://github.com/tanujbordikar/GameZone/tree/Rocket_Showdown) | -| [Find Extra Cube](https://github.com/kunjgit/GameZone/tree/main/Games/Find_Extra_Cube) | [PathPlex](https://github.com/kunjgit/GameZone/tree/main/Games/Pathplex) | [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [CSS Crossword](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Crossword) | -| [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [Flip Coin](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Coin) | [Witty Word Quest](https://github.com/kunjgit/GameZone/tree/main/Games/witty_word_quest) | [Typing Game](https://github.com/Ishan-77/GameZone/tree/main/Games/Typing_Game) | -| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | -| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Color_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Blast) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). | -| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Audio_Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Audio_Wordle) | [Makeover_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Makeover_Game) -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). -| [Wordling](https://github.com/kunjgit/GameZone/tree/main/Games/Wordling) +| [Master Typing](https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing) | [Treasure Hunt](https://github.com/Antiquely3059/GameZone/tree/main/Games/Treasure%20Hunt) | [Virtual Pet](https://github.com/Antiquely3059/GameZone/tree/main/Games/Virtual_Pet) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | | +| [Tilting Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Tilting_Maze) | [Simon Game Challenge](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Game_Challenge) | [Snake Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Game) | [Dino Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dino_Runner_Game) | +| [Whack a Mole](https://github.com/kunjgit/GameZone/tree/main/Games/Whack_a_Mole) | [Doraemon Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doraemon_Jump) | [Black Jack](https://github.com/kunjgit/GameZone/tree/main/Games/Black_Jack) | [Memory Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Game) | [Word Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Guessing_Game) | +| [Ludo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_Game) | [Piano Game](https://github.com/kunjgit/GameZone/tree/main/Games/Piano) | [Atari Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Atari_Breakout) | [Dinosaur Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dinosaur_Game) | [Guess The Colour by RGB Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Guessing_Game) | +| [Guess The Number](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Number) | [Race car game](https://github.com/kunjgit/GameZone/tree/main/Games/race_car) | [Aim Training](https://github.com/DP-NOTHING/GameZone/tree/contri/Games/Aim_Training) | [Alien Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Alien_Shooters) | [Fruit Ninja](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Ninja) | +| [Doodle Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Jump) | [Alphabet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet) | [Candy Crush](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush) | [Word Association Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Association_Game) | [Tic Tac Toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe) | +| [Flappy Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flappy_Bird) | [Trivia It](https://hithub.com/kunjgit/GameZone/tree/main/Games/Trivia_It) | [Minesweeper](https://github.com/kunjgit/GameZone/tree/main/Games/Minesweeper) | [Dice ShowDown Game](https://github.com/Himanshu07-debug/GameZone/tree/main/Games/Dice_Showdown_Game) | [Pac Man Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pac_Man_Game) | +| [Brick Breaker Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick_Breaker) | [Magic Square Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_Square) | [Fight Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fight_Game) | [Lighthouse Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lighthouse) | [Lights Out Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lights_Out) | +| [Word Scramble Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Scramble_Game) | [Tetris](https://github.com/kunjgit/GameZone/tree/main/Games/Tetris) | [Interactive Quizzing Application](https://github.com/kunjgit/GameZone/tree/main/Games/Interactive_Quizzing) | [Planet Defense Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Defense) | [Rabbit Rush Game](https://github.com/kunjgit/GameZone/tree/main/Games/Rabbit_Rush) | +| [Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Wordle) | [Roll Race Game](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_Race) | [Menja Game](https://github.com/kunjgit/GameZone/tree/main/Games/Menja) | [Typing Speed Test Game](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test_Game) | [Tile Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tile_Game) | +| [Stick Hero Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stick_Hero_Game) | [Starwars Character Game](https://github.com/kunjgit/GameZone/tree/main/Games/Starwars_Character_Game) | [Traffic Run](https://github.com/kunjgit/GameZone/tree/main/Games/Traffic_Run) | [Love Result Predictor](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Result_Predictor) | [Tower Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Defense) | +| [Menja_block_breaker](https://github.com/kunjgit/GameZone/tree/main/Games/Menja_block_breaker) | | [Yahtzee](https://github.com/kunjgit/GameZone/tree/main/Games/Yahtzee) | +| [Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bird_game) | [Bubble Blast Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Blast_Game) | [Emoji Charades](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Charades) | [Drum And Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Drum_Kit_Game) | [Rock Paper Scissors](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors) | +| [Frogger](https://github.com/kunjgit/GameZone/tree/main/Games/Frogger) | [!morethan5 ](https://github.com/kunjgit/GameZone/tree/main/Games/Not_morethan5) | [Unruly Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Unruly_Tower) | [Maze Game](https://github.com/kunjgit/GameZone/tree/main/Games/MazeGame) | [Connect4](https://github.com/kunjgit/GameZone/tree/main/Games/Connect4) | +| [Spelling_Bee](https://github.com/kunjgit/GameZone/tree/main/Games/Spelling_Bee) | [2048](https://github.com/kunjgit/GameZone/tree/main/Games/2048) | [Spin the Wheel](https://github.com/kunjgit/GameZone/tree/main/Games/Spin_the_wheel) | [Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Breakout) | [Tower Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Blocks) | +| [Platform Game](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_Game) | [Red Light Green Light](https://github.com/kunjgit/GameZone/tree/main/Games/Red_Light_Green_Light) | [Squash your Enemy](https://github.com/kunjgit/GameZone/tree/main/Games/Squashing_your_Enemy) | [Avax Gods](https://github.com/kunjgit/GameZone/tree/main/Games/Avax_gods) | [Flip Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Card_Game) | +| [Bingo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bingo_Game) | [Fifteen Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fifteen_Puzzle_Game) | [Stack_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stack_Game) | [Block.io_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Block.io) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | +| [Touch_The_Ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Touch_The_Ball) | [Sudoku](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku) | [Mini Golf](https://github.com/kunjgit/GameZone/tree/main/Games/Mini_Golf) | [Rubik's solver](https://github.com/kunjgit/GameZone/tree/main/Games/Rubik's_solver) | [Shoot_The_Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_The_Balloon) | +| [Dont_Die_To_Ghosts](https://github.com/kunjgit/GameZone/tree/main/Games/Dont_Die_To_Ghosts) | [SciFi Alchemy](https://github.com/kunjgit/GameZone/tree/main/Games/SciFi_Alchemy) | [Packabunchas](https://github.com/kunjgit/GameZone/tree/main/Games/Packabunchas) | [Cast and Catch](https://github.com/Sheetal-05/GameZone/tree/main/Games/Cast_and_Catch) | [Track Not Found](https://github.com/kunjgit/GameZone/tree/main/Games/Track_Not_Found) | +| [Love Calculator Game](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Calci) | [Planet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Game) | [Snake Ladder](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Ladder) | [Among Us Game](https://github.com/kunjgit/GameZone/tree/main/Games/Among_Us_Game) | [Pokedex Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokedex) | +| [Pacific Air Battle](https://github.com/kunjgit/GameZone/tree/main/Games/Pacific_Air_Battle) | [Dante](https://github.com/kunjgit/GameZone/tree/main/Games/Dante) | [Ping Pong Multiplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Multiplayer) | [Sonic The Hedgehog](https://github.com/kunjgit/GameZone/tree/main/Games/Sonic_The_Hedgehog) | [World Of Emojis](https://github.com/kunjgit/GameZone/tree/main/Games/World_Of_Emojis) | +| [Ball Fall Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Fall_Game) | [Pinball](https://github.com/kunjgit/GameZone/tree/main/Games/Pinball) | [Duck_Hunting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Duck_Hunting_Game) | [Color Turner](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Turner) | [Catch the Bunny](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_the_Bunny) | +| [Catch me game](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_me_game) | [Blank Detective](https://github.com/kunjgit/GameZone/tree/main/Games/Blanks_Detective) | [Falling Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Blocks) | [Movie Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Movie_Guessing_Game) | [Wildcard Bonanza](https://github.com/kunjgit/GameZone/tree/main/Games/Wildcard_Bonanza) | +| [The Last Spartan](https://github.com/kunjgit/GameZone/tree/main/Games/The_Last_Spartan) | [Space Exploration](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Exploration) | [Bow Arrow Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_Arrow) | [I Want To Google The Game](https://github.com/kunjgit/GameZone/tree/main/Games/I_Want_To_Google_The_Game) | [Space Gun](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Gun) | +| [Space Huggers](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Huggers) | [Spaceship Escort](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceship_Escort) | [Space Defence](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Defence) | [Glitch Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Glitch_Buster) | [3D Box Game](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Box_Game) | +| [Escape](https://github.com/kunjgit/GameZone/tree/main/Games/Escape) | [Retro Dungeon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Retro_Dungeon_Puzzle) | [Immunity Collapse](https://github.com/kunjgit/GameZone/tree/main/Games/Immunity_Collapse) | [Hunt Your Card](https://github.com/kunjgit/GameZone/tree/main/Games/Hunt_Your_Card) | [Tenacity](https://github.com/kunjgit/GameZone/tree/main/Games/Tenacity) | +| [Emoji Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Puzzle_Game) | [Back To Space](https://github.com/kunjgit/GameZone/tree/main/Games/Back_To_Space) | [Snooze](https://github.com/kunjgit/GameZone/tree/main/Games/Snooze) | [Galaxy Rider](https://github.com/kunjgit/GameZone/tree/main/Games/Galaxy_Rider) | [Squared Lines](https://github.com/kunjgit/GameZone/tree/main/Games/Squared_Lines) | +| [Space War](https://github.com/kunjgit/GameZone/tree/main/Games/Space_War) | [Sciara of Colors](https://github.com/kunjgit/GameZone/tree/main/Games/Sciara_Of_Colors) | [JunoJs](https://github.com/kunjgit/GameZone/tree/main/Games/JunoJs) | [Fall Down](https://github.com/kunjgit/GameZone/tree/main/Games/Fall_Down) | [Cat Goric](https://github.com/kunjgit/GameZone/tree/main/Games/Cat_Goric) | +| [Cable Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Cable_Maze) | [Spaceducts](https://github.com/kunjgit/GameZone/tree/main/Games/Spaceducts) | [Zurbo](https://github.com/kunjgit/GameZone/tree/main/Games/Zurbo) | [Blast Zone](https://github.com/kunjgit/GameZone/tree/main/Games/BlastZone) | [Free Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Free_Bird) | +| [Maximise Boxes](https://github.com/kunjgit/GameZone/tree/main/Games/MaximiseBoxes) | [Slide Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Slide_Puzzle) | [Diamond Run](https://github.com/kunjgit/GameZone/tree/main/Games/Diamond_Run) | [Everyones Sky](https://github.com/kunjgit/GameZone/tree/main/Games/Everyones_Sky) | [Line Of Fire](https://github.com/kunjgit/GameZone/tree/main/Games/Line_Of_Fire) | +| [1024 Moves](https://github.com/kunjgit/GameZone/tree/main/Games/1024_Moves) | [Save The Forest](https://github.com/kunjgit/GameZone/tree/main/Games/Save_The_Forest) | [Dragon World Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_World_Game) | [DuckHunt](https://github.com/kunjgit/GameZone/tree/main/Games/DuckHunt) | [Plankman](https://github.com/kunjgit/GameZone/tree/main/Games/Plankman) | +| [Hold The Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Hold_The_Cloud) | [Labyrinth](https://github.com/kunjgit/GameZone/tree/main/Games/Labyrinth) | [RIP](https://github.com/kunjgit/GameZone/tree/main/Games/RIP) | [Risky Nav](https://github.com/kunjgit/GameZone/tree/main/Games/Risky_Nav) | [Pixels From Space](https://github.com/kunjgit/GameZone/tree/main/Games/Pixels_From_Space) | +| [Poker_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Poker_Dice) | [Unlock_The_Lock](https://github.com/kunjgit/GameZone/tree/main/Games/Unlock_The_Lock) | [Gnomedom](https://github.com/kunjgit/GameZone/tree/main/Games/Gnomedom) | [Lost In The Maze 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Lost_In_The_Maze_3D) | [PONG BALL](https://github.com/kunjgit/GameZone/tree/main/Games/Pong_Ball) | +| [Projectile Motion Game](https://github.com/kunjgit/GameZone/tree/main/Games/Projectile_Motion_Game) | [Swift](https://github.com/kunjgit/GameZone/tree/main/Games/Swift) | [Spacepi](https://github.com/kunjgit/GameZone/tree/main/Games/Spacepi) | [Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Destroyer) | [Terror_Seventy](https://github.com/kunjgit/GameZone/tree/main/Games/Terror_Seventy) | +| [Humming](https://github.com/kunjgit/GameZone/tree/main/Games/Humming) | [Word Search Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Word_search_puzzle) | [Ballarena](https://github.com/kunjgit/GameZone/tree/main/Games/Ballarena) | [Beyonder](https://github.com/kunjgit/GameZone/tree/main/Games/Beyonder) | [Shpere](https://github.com/kunjgit/GameZone/tree/main/Games/Shpere) | +| [Short Circuit](https://github.com/kunjgit/GameZone/tree/main/Games/Short_Circuit) | [Johnny Smiter](https://github.com/kunjgit/GameZone/tree/main/Games/Johnny_Smiter) | [Rectangular](https://github.com/kunjgit/GameZone/tree/main/Games/Rectangular) | [Canon Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Canon_Defense) | [Trashem](https://github.com/kunjgit/GameZone/tree/main/Games/Trashem) | +| [Chess](https://github.com/SoarinSkySagar/GameZone-GSSoC23/tree/main/Games/CHESS) | [Get The Pigeon](https://github.com/kunjgit/GameZone/tree/main/Games/Get_The_Pigeon) | [Uxu](https://github.com/kunjgit/GameZone/tree/main/Games/Uxu) | [Soul Jumper](https://github.com/kunjgit/GameZone/tree/main/Games/Soul_Jumper) | [Infernal Throne](https://github.com/kunjgit/GameZone/tree/main/Games/Infernal_Throne) | +| [Dead Again](https://github.com/kunjgit/GameZone/tree/main/Games/Dead_Again) | [Norman The Necromancer](https://github.com/kunjgit/GameZone/tree/main/Games/Norman_The_Necromancer) | [Shape Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Shape_Blocks) | [Goal_Rush](https://github.com/kunjgit/GameZone/tree/main/Games/Goal_Rush) | [Charon Jr](https://github.com/kunjgit/GameZone/tree/main/Games/Charon_Jr) | +| [Color Shifter](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Shifter) | [Oh, flip](https://github.com/kunjgit/GameZone/tree/main/Games/oh_flip) | [Snake Feeder Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Feeder_Game) | [LOSSST](https://github.com/kunjgit/GameZone/tree/main/Games/LOSSST) | [HangMan](https://github.com/kunjgit/GameZone/tree/main/Games/HangMan) | +| [Bad_Luck_Brian](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Luck_Brian) | [Bad_Depot](https://github.com/kunjgit/GameZone/tree/main/Games/Bad_Depot) | [Achluophobia](https://github.com/kunjgit/GameZone/tree/main/Games/Achluophobia) | [Timber_Terry](https://github.com/kunjgit/GameZone/tree/main/Games/Timber_Terry) | [Earth_Destroyer](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Destroyer) | +| [Lonely Phantom](https://github.com/kunjgit/GameZone/tree/main/Games/Lonely_Phantom) | [Ghost Surf](https://github.com/kunjgit/GameZone/tree/main/Games/Ghost_Surf) | [Sucker](https://github.com/kunjgit/GameZone/tree/main/Games/Sucker) | [Sorades](https://github.com/kunjgit/GameZone/tree/main/Games/Sorades) | [Thirteen](https://github.com/kunjgit/GameZone/tree/main/Games/Thirteen) | +| [The Raising Fighting Spirits](https://github.com/kunjgit/GameZone/tree/main/Games/The_Raising_Fighting_Spirits) | [Green Mahjong](https://github.com/kunjgit/GameZone/tree/main/Games/Green_Mahjong) | [Drag And Drop Puzzle Game](https://github.com/kunjgit/GameZone/tree/main/Games/Drag_And_Drop_Puzzle) | [Music Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Music_Guess_Game) | [Tower Of Hanoi](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Of_Hanoi) | +| [Mastermind_Mania](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind_Mania) | [Ludo_4_Player](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_4_Player) | [AirBalloon](https://github.com/kunjgit/GameZone/tree/main/Games/AirBalloon) | [Space Invaders](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Invaders) | [Cut the Rope](https://github.com/kunjgit/GameZone/tree/main/Games/Cut_the_rope) | +| [Caesar&Cipher](https://github.com/kunjgit/GameZone/tree/main/Games/Caesar_Cipher) | [Monster_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Monster_Maker) | [Stolen Sword](https://github.com/kunjgit/GameZone/tree/main/Games/Stolen_Sword) | [Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind) | [Highway 404](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_404) | +| [BullseyeGame](https://github.com/kunjgit/GameZone/tree/main/Games/BullseyeGame) | [Crossword Game](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Game) | [Guess the Correct Logo](https://github.com/shruti-2412/GameZone/tree/main/Games/Guess_The_Correct_Logo) | [Painting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Painting_Game) | [Platform_game_engine](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_game_engine) | +| [Kill_The_Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Kill_The_Bird) | +| [Doppelkopf](https://github.com/kunjgit/GameZone/tree/main/Games/Doppelkopf) | [quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/quiz_game) | [Island Survival](https://github.com/kunjgit/GameZone/tree/main/Games/Island_Survival) | [Linkup Game](https://github.com/kunjgit/GameZone/tree/main/Games/linkup) | [Trivia_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Trivia_Card) | +| [Insect Catch Game](https://github.com/kunjgit/GameZone/tree/main/Games/Insect_Catch_Game) | [Carnival_game](https://github.com/kunjgit/GameZone/tree/main/Games/Carnival_game) | [Make Me Laugh](https://github.com/kunjgit/GameZone/tree/main/Games/Make_Me_Laugh) | [Avoider_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Avoider_Game) | [Dungeon_Crawler](https://github.com/kunjgit/GameZone/tree/main/Games/Dungeon_Crawler) | +| [snake_water_gun](https://github.com/kunjgit/GameZone/tree/main/Games/snake_water_gun) | [Run and Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Run_and_Jump) | [AI CHESS Game](https://github.com/kunjgit/GameZone/tree/main/Games/AI_CHESS_Game) | [Fruit_Catching](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching) | [Bulls eye](https://github.com/kunjgit/GameZone/tree/main/Games/Bulls_eye) | +| [Crystals_Collecter](https://github.com/kunjgit/GameZone/tree/main/Games/Crystals_Collecter) | [Dots and Boxes Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dots_and_Boxes_Game) | [Infinite Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Infinite_Runner_Game) | [Mario_Matching](https://github.com/kunjgit/GameZone/tree/main/Games/mario_matching_game) | [Hand_Cricket](https://github.com/kunjgit/GameZone/tree/main/Games/Hand_Cricket) | +| [Crossword_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Puzzle) | [Pixel_Painter](https://github.com/kunjgit/GameZone/tree/main/Games/Pixel_Painter) | [Riddle_Room](https://github.com/kunjgit/GameZone/tree/main/Games/Riddle_Room) | [ArmorAlley](https://github.com/kunjgit/GameZone/tree/main/Games/ArmorAlley) | [Color_switcher](https://github.com/kunjgit/GameZone/tree/main/Games/Color_switcher) | +| [Maze of Cables](https://github.com/VSatwika/GameZonefork/tree/Maze_of_Cables/Games/Maze_of_Cables) | [Escape Room](https://github.com/kunjgit/GameZone/tree/main/Games/Escape_room) | [Super_mario_run](https://github.com/kunjgit/GameZone/tree/main/Games/Super_mario_run) | [Doodle_Draw](https://github.com/kunjgit/GameZone/tree/main/Games/Doodle_Draw) | [Arcade_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arcade_Game) | +| [Slice Storm](https://github.com/VSatwika/GameZonefork/tree/Slice_Storm/Games/Slice_Storm) | [CodePen_SImulator](https://github.com/kunjgit/GameZone/tree/main/Games/CodePen_Simulator) | [Piano_Tiles](https://github.com/kunjgit/GameZone/tree/main/Games/PianoTiles_Game) | [CareTaker](https://github.com/kunjgit/GameZone/tree/main/Games/CareTaker) | [UNO](https://github.com/kunjgit/GameZone/tree/main/Games/UNO) | +| [Remeber the color](https://github.com/kunjgit/GameZone/tree/main/Games/Remember_the_color) | [Guess The Random Shape](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Random_Shape) | [Save Doraemon](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Doraemon) | [Animal_Match_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Animal_Match_Game) | [Hextris](https://github.com/kunjgit/GameZone/tree/main/Games/Hextris) | +| [MrFakeGame](https://github.com/kunjgit/GameZone/tree/main/Games/MrFakeGame) | [Checkers](https://github.com/kunjgit/GameZone/tree/main/Games/Checkers) | [Roulette](https://github.com/kunjgit/GameZone/tree/main/Games/Roulette) | [Aero Acrobat](https://github.com/kunjgit/GameZone/tree/main/Games/Aero_Acrobat) | [Adventure_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Adventure_Game) | +| [Pumpkin_Pursuit](https://github.com/kunjgit/GameZone/tree/main/Games/Pumpkin_Pursuit) | [Corona Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Corona_Shooter) | [Pokemon Ball Finder](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Ball_Finder) | [Basketball](https://github.com/kunjgit/GameZone/tree/main/Games/Basketball) | [Wault_master](https://github.com/kunjgit/GameZone/tree/main/Games/Wault_master) | +| [Reaction TIme](https://github.com/kunjgit/GameZone/tree/main/Games/Reaction_Time) | [Flag Guess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flag_Guess_Game) | [Cross_The_Road](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_Road) | [Highway Race - Barrel Dodge](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_Race) | [Bit_Maze_Platformer_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Bit_Maze_Platformer_Maze) | +| [Math Game](https://github.com/kunjgit/GameZone/tree/main/Games/Math_Game) | [Space Drifter](https://github.com/kunjgit/GameZone/tree/main/Games/space_drifter) | [Observe the Cloud](https://github.com/kunjgit/GameZone/tree/main/Games/Observe%20the%20Cloud) | [Cosmic_Coin_Blaster](https://github.com/kunjgit/GameZone/tree/main/Games/Cosmic_Coin_Blaster) | [Circus Charly](https://github.com/kunjgit/GameZone/tree/main/Games/Circus_Charly) | +| [Pikachu_Volleyball](https://github.com/kunjgit/GameZone/tree/main/Games/Pikachu_Volleyball) | [Trex_Run](https://github.com/akankshachanana1/GameZone/tree/Added/Games/Trex_Run) | [Crack_The_Code](https://github.com/kunjgit/GameZone/tree/main/Games/Crack_The_Code) | [Skeleathon](https://github.com/kunjgit/GameZone/tree/main/Games/Skeleathon) | [Shadow_PokeGuess](https://github.com/kunjgit/GameZone/tree/main/Games/Shadow_PokeGuess) | +| [Brain Color Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Color_Mastermind) | [Lizard Spock Game](https://github.com/kunjgit/GameZone/tree/main/Games/Lizard_Spock_Game) | [Angry Boars](https://github.com/kunjgit/GameZone/tree/main/Games/Angry_Boars) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/main/Games/Alphabet_Learning_Game) | [Country_Guesser_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Country_Guesser_Game) | +| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/main/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Alphabet Learning Game](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Alphabet_Learning_Game) | +| [Poke_Guess_Blitz](https://github.com/kunjgit/GameZone/tree/main/Games/Poke_Guess_Blitz) | [Spider Man Go](https://github.com/kunjgit/GameZone/tree/lizard-game/Games/Spider_Man_Go) | [Foosball](https://github.com/kunjgit/GameZone/tree/main/Games/Foosball) | [Triangle_Back_to_Home](https://github.com/kunjgit/GameZone/tree/main/Games/Triangle_Back_To_Home) | [Death by Hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Death_by_Hamster) | +| [Tenzies](https://github.com/kunjgit/GameZone/tree/main/Games/Tenzies) | [Target_Torrent](https://github.com/kunjgit/GameZone/tree/main/Games/Target_Torrent) | [Reversi](https://github.com/kunjgit/GameZone/tree/main/Games/Reversi) | [reaction_teaser](https://github.com/kunjgit/GameZone/pull/2134/files) | [Scribble](https://github.com/kunjgit/GameZone/tree/main/Games/Scribble) | +| [Brain Burst Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Burst_Game) | [StickTheSticker](https://github.com/kunjgit/GameZone/tree/main/Games/StickTheSticker) | [Meme_Battle_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Meme_Battle_Game) | [Match_Color_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Match_Color_Game) | [Bow_And_Arrow](https://github.com/kunjgit/GameZone/tree/main/Games/Bow_And_Arrow) | +| [Beyblade](https://github.com/kunjgit/GameZone/tree/main/Games/Beyblade) | [The labyrinth of death](https://github.com/sahaycodes/GameZone/tree/meme/Games/The_labyrinth_of_death) | [2D BreakOut](https://github.com/kunjgit/GameZone/tree/main/Games/2D_Breakout) | [Battleship](https://github.com/kunjgit/GameZone/tree/main/Games/Battleship) | [Baseball](https://github.com/kunjgit/GameZone/tree/main/Games/Baseball) | +| [Save Princess](https://github.com/kunjgit/GameZone/tree/main/Games/Save_Princess) | [RoadFighter](https://github.com/kunjgit/GameZone/tree/main/Games/RoadFighter) | [Guitar Game](https://github.com/kunjgit/GameZone/tree/main/Games/Guitar_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire) | [Lady Tiger Hunter](https://github.com/kunjgit/GameZone/tree/main/Games/Lady_Tiger_Hunter) | +| [Stone Paper Scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Stone_paper_scissor) | [Flashlight_Pointer_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flashlight_Pointer_Game) | [Pig game](https://github.com/KanchanBora/GameZone/tree/main/Games/Pig_game) | [Asteroids 3D](https://github.com/kunjgit/GameZone/tree/main/Games/Asteroids_3D) | [Lamb Lane](https://github.com/sahaycodes/GameZone/tree/meme/Games/Lamb_Lane) | +| [Dinoffline](https://github.com/kunjgit/GameZone/tree/main/Games/Dinoffline) | [Maths Sprint Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maths_Sprint_Game) | [Etch a Sketch](https://github.com/kunjgit/GameZone/tree/main/Games/Etch_a_Sketch) | [QuizzApp](https://github.com/kunjgit/GameZone/tree/main/Games/QuizzApp) | [Chess Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game) | +| [Which Color](https://github.com/sahaycodes/GameZone/tree/main/Games/Which_Color) | [Snail_Game](https://github.com/sahaycodes/GameZone/tree/meme/Games/Snail_Game) | [Solitaire](https://github.com/kunjgit/GameZone/tree/main/Games/Solitaire_up) | [Slime Attack](https://github.com/apu52/GameZone/tree/Slime-Attack-game/Games/Slime_attack_game) | [Star_Trek_Trivia](https://github.com/kunjgit/GameZone/tree/starTrek-trivia/Games/Star_Trek_Trivia) | +| [Pokemon_Card_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Card_Game) | [Digit Dilemma](https://github.com/kunjgit/GameZone/tree/main/Games/Digit_Dilemma) | [Tennis](https://github.com/kunjgit/GameZone/tree/main/Games/Tennis) | [Illusion](https://github.com/kunjgit/GameZone/tree/main/Games/Illusion) | [Block Buster](https://github.com/sahaycodes/GameZone/tree/meme/Games/Block_Buster) | +| [Guess_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Ball) | [Doremon Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Doremon_Puzzle) | [Guess The Celebrity](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Celeb) | [Rock_Paper_Scissors_Lizard_Spock](https://github.com/kunjgit/GameZone/tree/main/Rock_Paper_Scissors_Lizard_Spock) | [Elemental Riddles](https://github.com/kunjgit/GameZone/tree/main/Elemental_Riddles) | +| [Falling_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Falling_Ball) | [Hit Target](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_Target) | [Archery](https://github.com/kunjgit/GameZone/tree/main/Games/Archery) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | +| [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [color_switch_challenger](https://github.com/kunjgit/GameZone/tree/main/color_switch_challenger) | [Puzzle_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzle_Game) | [Quizify](https://github.com/kunjgit/GameZone/tree/main/Quizify) | +| [word blitz](https://github.com/kunjgit/GameZone/tree/main/word_blitz) | [Code Cracker](https://github.com/kunjgit/GameZone/tree/main/Code_Cracker) | [Know Your Country](https://github.com/kunjgit/GameZone/tree/main/Games/Know_Your_Country) | [Musical_Floor](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Floor) | [Sky_Dodge](https://github.com/kunjgit/GameZone/tree/main/Sky_Dodge) | +| [Swap Card Game](https://github.com/kunjgit/GameZone/tree/main/Games/Swap-Card-Game) | [Memorization_card](https://github.com/kunjgit/GameZone/tree/main/Games/Memorization_card) | [Smashing_Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Smashing_Blocks) | [Response_Reaction](https://github.com/kunjgit/GameZone/tree/main/Games/Response_Reaction) | [Truth and Dare](https://github.com/kunjgit/GameZone/tree/main/Games/Truth_And_Dare) | +| [Rotating_Elements](https://github.com/tanujbordikar/GameZone/tree/Rotating_Elements) | [Chopsticks](https://github.com/kunjgit/GameZone/tree/main/Games/Chopsticks) | [Anime Clicker](https://github.com/kunjgit/GameZone/tree/main/Games/Anime_Clicker) | [3D Snake](https://github.com/kunjgit/GameZone/tree/main/Games/3d_Snake) | [Rocket_Showdown](https://github.com/tanujbordikar/GameZone/tree/Rocket_Showdown) | +| [Find Extra Cube](https://github.com/kunjgit/GameZone/tree/main/Games/Find_Extra_Cube) | [PathPlex](https://github.com/kunjgit/GameZone/tree/main/Games/Pathplex) | [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [CSS Crossword](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Crossword) | +| [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [Flip Coin](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Coin) | [Witty Word Quest](https://github.com/kunjgit/GameZone/tree/main/Games/witty_word_quest) | [Typing Game](https://github.com/Ishan-77/GameZone/tree/main/Games/Typing_Game) | +| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | +| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Color_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Blast) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). | +| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Audio_Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Audio_Wordle) | [Makeover_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Makeover_Game) +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). +| [Wordling](https://github.com/kunjgit/GameZone/tree/main/Games/Wordling) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) -| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Audio_Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Audio_Wordle>>>>>>> main +| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Audio_Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Audio_Wordle>>>>>>> main | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | | [escaperoom](https://github.com/kunjgit/GameZone/tree/main/Games/escaperoom) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) | [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | | [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | - [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics)| +[TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics)| | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | | [CopyCat](https://github.com/kunjgit/GameZone/tree/main/Games/CopyCat) | -| [Cross_The_River_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_River_Game) | +| [Cross_The_River_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_The_River_Game) | [DoraemonRun ](https://github.com/kunjgit/GameZone/tree/main/Games/DoraemonRun) | | [Memory_Cards_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Cards_Game) | | [Typing_Speed_Test2](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test2) | [Tic Tac Toe Responsive ](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_tac_toe_responsive) | [Minesweeper Easy ](https://github.com/kunjgit/GameZone/tree/main/Games/MineSweeper_Easy) | @@ -1569,8 +1561,8 @@ This repository also provides one such platforms where contributers come over an |[AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | |[Chess_Game_computer](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game_computer) | |[Turn_on_the_light](https://github.com/kunjgit/GameZone/tree/main/Games/Turn_on_the_light) | -|[AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | -| [whack a mole](https://github.com/kunjgit/GameZone/tree/main/Games/whack%20a%20mole) | +|[AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | +| [whack a mole](https://github.com/kunjgit/GameZone/tree/main/Games/whack%20a%20mole) | | [Snake](https://github.com/kunjgit/GameZone/tree/main/Games/snake)                | | [Dice_Game] (https://github.com/shivan2004/GameZone/tree/main/Games/Dice_Game)| |[HitOrMiss](https://github.com/kunjgit/GameZone/tree/main/Games/HitOrMiss)| @@ -1580,13 +1572,13 @@ This repository also provides one such platforms where contributers come over an | [Bubble'z Popper](https://github.com/Chandu6702/GameZone/tree/main/Games/Bubble'z Popper)| | [Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | | [Gravity_Simulation_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Gravity_Simulation_Game) | -| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) +| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) -|[Elephant_ant_man](https://github.com/tanishkaa08/GameZone/tree/main/Games/Elephant_ant_man) -| [Catch_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Ball) | -| [Ball_in_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_in_Maze) | -|[Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | -| [Gravity_Simulation_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Gravity_Simulation_Game) +|[Elephant_ant_man](https://github.com/tanishkaa08/GameZone/tree/main/Games/Elephant_ant_man) +| [Catch_The_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Ball) | +| [Ball_in_Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_in_Maze) | +|[Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | +| [Gravity_Simulation_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Gravity_Simulation_Game) | [Anagarm-Word-Game](https://github.com/kunjgit/GameZone/tree/main/Games/Anagarm-Word-Game) | | [Brick Buster Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick Buster) | | [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) @@ -1597,7 +1589,7 @@ This repository also provides one such platforms where contributers come over an | [Number_Guessing_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Guessing_Game) | | [Currency_Converter](https://github.com/kunjgit/GameZone/tree/main/Games/Currency_Converter) | | [mario-game](https://github.com/kunjgit/GameZone/tree/main/Games/mario-game) | -| [Fruit_Slicer_Game] (https://github.com/narayani9120/GameZone_B/tree/main/Games/Fruit_Slicer_Game) | +| [Fruit_Slicer_Game] (https://github.com/narayani9120/GameZone_B/tree/main/Games/Fruit_Slicer_Game) | | [Tower_Block_Game](https://github.com/Saipradyumnagoud/GameZone/tree/main/Games/Tower_Block_Game) | | [Modulo_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Modulo_Game) | | [Memory_Matching_Game](https://github.com/Saipradyumnagoud/GameZone/tree/main/Games/Memory_Matching_Game) | @@ -1614,10 +1606,9 @@ This repository also provides one such platforms where contributers come over an | [Bunny is Lost](https://github.com/kunjgit/GameZone/tree/main/Games/Bunny_is_Lost)| |[Steam_Punk](https://github.com/kunjgit/GameZone/tree/main/Games/Steam_Punk)| - |[OutRun_Offline_Game](https://github.com/kunjgit/GameZone/tree/main/Games/OutRun_Offline_Game)| |[Tower Defence Game](https://github.com/Will2Jacks/GameZoneForked/tree/Task/Games/Tower_Defence_Game)| - + | [Jigsaw_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/Jigsaw_Puzzle) | | [Mathematics Escape Room](https://github.com/kunjgit/GameZone/tree/main/Games/MathematicsEscapeRoom) | @@ -1635,20 +1626,20 @@ This repository also provides one such platforms where contributers come over an | [Tic_Tac_Toe_Neon](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_Tac_Toe_Neon) | | [Ultimate_Football_Manager](https://github.com/kunjgit/GameZone/tree/main/Games/Ultimate_Football_Manager) | |[Zombie_Shooter](https://github.com/kunjgit/GameZone/tree/main/Games/Zombie_Shooter)| - | [Ganesh_QR_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Ganesh_QR_Maker) | +| [Ganesh_QR_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Ganesh_QR_Maker) | |[Brain_Card_game](https://github.com/Kunjgit/GameZone/tree/main/Games/Brain_Card_game)| |[Wheel_of_Fortunes](https://github.com/kunjgit/GameZone/tree/main/Games/Wheel_of_Fortunes)| |[Samurai_Fighting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Samurai_Fighting_Game)| |[Tic-tac-toe](https://github.com/kunjgit/GameZone/tree/main/Games/Tic-tac-toe)| |[Quest_For_Riches](https://github.com/kunjgit/GameZone/tree/main/Games/Quest_For_Riches)| |[Pattern Creation Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pattern_Creation_Game)| - [Magic_8_ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_8_ball) | +[Magic_8_ball_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Magic_8_ball) | | [Catch_Craze](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_Craze) | | [Angry_Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Angry_Bird) | | [UNO game with computer](https://github.com/kunjgit/GameZone/tree/main/Games/UNO_game_with_Computer) | |[Dice_Rolling_Simulator](https://github.com/priyashuu/GameZone/tree/main/Games/Dice_rolling_simulator)| |[Space_Dominators](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Dominators)| -|[Fruity_Fortune](https://github.com/kunjgit/GameZone/tree/main/Games/Fruity_Fortune)| +|[Fruity_Fortune](https://github.com/kunjgit/GameZone/tree/main/Games/Fruity_Fortune)| | [Simon_Says](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Says) | |[Idle_miner](https://github.com/kunjgit/GameZone/tree/main/Games/Idle_miner)| |[Five_Nights_at_Freddys](https://github.com/kunjgit/GameZone/tree/main/Games/Five_Nights_at_Freddys)| @@ -1665,6 +1656,8 @@ This repository also provides one such platforms where contributers come over an |[Pokemon_Adventure_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Adventure_Game)| +|[CowBull](https://github.com/kunjgit/GameZone/tree/main/Games/CowBull)| +