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
+
+
+
+
+ Attempt |
+ Guess |
+ Cows |
+ Bulls |
+
+
+
+
+
+
+
+
+
+
diff --git a/Games/CowBull/image.png b/Games/CowBull/image.png
new file mode 100644
index 0000000000..56fd8be0d1
Binary files /dev/null and b/Games/CowBull/image.png differ
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
+
+
+
+
+
+
+
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/README.md b/README.md
index 39b3ce72fb..794ca8dd7b 100644
--- a/README.md
+++ b/README.md
@@ -206,7 +206,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)
@@ -214,13 +214,7 @@ This repository also provides one such platforms where contributers come over an
| [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) |
[Knife_hit](https://github.com/kunjgit/GameZone/tree/main/Games/Knife_hit) |
-| [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) |
-| [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) |
-| [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) |
@@ -232,98 +226,98 @@ This repository also provides one such platforms where contributers come over an
| [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) |
-| [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) |
-| [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) |
+| [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) |
+| [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) |
+| [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) |
+| [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)|
@@ -440,9 +434,9 @@ Terms and conditions for use, reproduction and distribution are under the [Apach
| [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) | [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) |
+| [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)
+| [DNA_Sequencer](https://github.com/kunjgit/GameZone/tree/main/Games/DNA_Sequencer) |
-| [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) | [Sand Tetris](https://github.com/kunjgit/GameZone/tree/main/Games/sand_tetris) | |
| [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) |
@@ -450,8 +444,6 @@ Terms and conditions for use, reproduction and distribution are under the [Apach
| [Unword_it](https://github.com/kunjgit/GameZone/tree/main/Games/Unword_It) |
| [Boom_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Boom_Blast) |
-| [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) |
| [Underwater_Shoot](https://github.com/kunjgit/GameZone/tree/main/Games/Underwater_Shoot) |
| [Gravity_Drops](https://github.com/kunjgit/GameZone/tree/main/Games/Gravity_Drops) |
@@ -540,9 +532,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
@@ -655,8 +646,8 @@ This repository also provides one such platforms where contributers come over an
| [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)
@@ -664,10 +655,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)
@@ -808,14 +799,14 @@ This repository also provides one such platforms where contributers come over an
| [Language Learner Adventure](https://github.com/kunjgit/GameZone/tree/main/Games/Language_Learner_Adventure)|
| [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) |
| [Taash_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Taash_Game)|
| [Brick Buster Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brick%20Buster) |
@@ -824,13 +815,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) |
@@ -850,13 +841,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)|
@@ -868,7 +859,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) |
@@ -890,6 +881,7 @@ 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) |
@@ -905,11 +897,11 @@ This repository also provides one such platforms where contributers come over an
| [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) |
@@ -924,7 +916,6 @@ This repository also provides one such platforms where contributers come over an
Back to top
GameZone
-
@@ -1003,7 +994,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 🔥
+ - # 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
@@ -1031,107 +1023,107 @@ 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) |
+| [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)
+| [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
+| [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) |
@@ -1271,8 +1263,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)|
@@ -1282,11 +1274,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)
@@ -1297,7 +1289,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) |
@@ -1314,10 +1306,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) |
@@ -1335,128 +1326,125 @@ 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) |
| [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)|
-|[Catch_The_Object](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Objects)|
-|[Sky_Jumper](https://github.com/kunjgit/GameZone/tree/main/Games/Sky_Jumper)|
-|[Space_Dash](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Dash)|
-| 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) |
@@ -1597,8 +1585,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)|
@@ -1608,12 +1596,15 @@ This repository also provides one such platforms where contributers come over an
[Mechanica](https://github.com/kunjgit/GameZone/tree/main/Games/Mechanica) |
| [Bounce_Ball](https://github.com/kunjgit/GameZone/tree/main/Games/Bounce_Ball)
| [Bubble'z Popper](https://github.com/Chandu6702/GameZone/tree/main/Games/Bubble'z Popper)|
-| [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)
+| [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)
+
+|[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)
@@ -1624,7 +1615,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) |
@@ -1641,17 +1632,16 @@ 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) |
|[Tower Defence Game](https://github.com/Will2Jacks/GameZoneForked/tree/Task/Games/Tower_Defence_Game) | | [Ant Smasher Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ant_Smasher)|
-|[Mario Matching Game](https://github.com/ananyag309/GameZone_ggsoc/tree/main/Games/MarioMatchingGame)|
+|[Mario Matching Game](https://github.com/ananyag309/GameZone_ggsos/MarioMatchingGame)|
|[Dot_Dash](https://github.com/kunjgit/GameZone/tree/main/Games/Dot_Dash)|
|[Ghost Busting Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ghost_busting_game)|
-|[Wheel_of_fortune](https://github.com/Will2Jacks/GameZoneForked/tree/Task/Games/Wheel_of_fortune)|
+|[Wheel_of_fortune](https://github.com/Will2Jacks/GameZoneForked/te/Task/Games/Wheel_of_fortune)|
|[Dot_Box_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dot_Box_Game)|
| [Cosmic_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Cosmic_Blast) |
|[Mole](https://github.com/taneeshaa15/GameZone/tree/main/Games/Mole)|
@@ -1661,37 +1651,30 @@ 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)|
|[Snake_Gun_Water](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Gun_Water)|
|[Tether](https://github.com/kunjgit/GameZone/tree/main/Games/Tether)|
-|[Rock Paper Scissors Lizard Spock Game](./Games/Rock_Paper_Scissors_Lizard_Spock_Game)|
-|[Hangman_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Hangman_Game)|
-|[Conqueror_Quest](https://github.com/kunjgit/GameZone/tree/main/Games/Conqueror_Quest)|
|[Maze_Explorer](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Explorer)|
|[Rock Paper Scissors Lizard Spock Game](./Games/Rock_Paper_Scissors_Lizard_Spock_Game)|
|[Word Search Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Search_Game)|
|[Eco_Warrior](https://github.com/kunjgit/GameZone/tree/main/Games/Eco_Warrior)|
|[Hangman_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Hangman_Game)|
-|[Endless_Runner](https://github.com/kunjgit/GameZone/blob/main/Games/EndlessRunner/index.html)|
-|[Brain_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Brain_Game)|
-|[Pokemon_Adventure_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Adventure_Game)|
-|[Garden-Builder-game](https://github.com/kunjgit/GameZone/tree/main/Games/Garden-Builder-game)|
|[2D_Fighting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/2D_Fighting_Game)|
| [Airhockey_game](https://github.com/kunjgit/GameZone/tree/main/Games/Airhockey_game)|
|[King_Sword_Runner](https://github.com/kunjgit/GameZone/tree/main/Games/King_Sword_Runner)|
@@ -1713,6 +1696,7 @@ This repository also provides one such platforms where contributers come over an
|[Tower_Building_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Building_Game)|
|[Cross_Road_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Cross_Road_Game)|
+
diff --git a/assets/images/cowhome.png b/assets/images/cowhome.png
new file mode 100644
index 0000000000..c050febd56
Binary files /dev/null and b/assets/images/cowhome.png differ
diff --git a/assets/images/cowlogo.png b/assets/images/cowlogo.png
new file mode 100644
index 0000000000..e5c12f9e02
Binary files /dev/null and b/assets/images/cowlogo.png differ