🤖 A collection of simple and different games written on C#, C++, Python and JavaScript.
2048
- A single-player puzzle game onC#
. The main goal of the game is to slide tiles with numbers on a grid to add them to create a tile with the number 2048, but you can keep playing after you reach that number.
BarleyBreak
- A popular chasing game onC#
, mentioned often in literary sources of the 16th to 18th centuries, played either by children or young people of both sexes. The goal of the game is to collect chips in a field with numbers in order, using as few moves as possible and in a shorter time.
BushedBricks
- Simple and fun game onJavaScript
. Combine tiles of same color. Once tile has reached x4 or above, it can be placed on appropriate color line. You'll get game points for that. You need to hold 400 steps or earn 5,000 points to win. Use navigation keys (← ↑↓→) for desktop or swipe for tablet/mobile.
cppAsteroids
- Asteroids game on OpenGL/C++.- glut download:
https://www.opengl.org/resources/libraries/glut/
.
- glut download:
cppBreakout
- Breakout game on OpenGL/C++.- glut download:
https://www.opengl.org/resources/libraries/glut/
.
- glut download:
cppCheckers
- Checkers game on OpenGL/C++.- glut download:
https://www.opengl.org/resources/libraries/glut/
.
- glut download:
cppMinesweeper
- Minesweeper game on OpenGL/C++.- glut download:
https://www.opengl.org/resources/libraries/glut/
.
- glut download:
cppSnake
- Snake game on OpenGL/C++.- glut download:
https://www.opengl.org/resources/libraries/glut/
.
- glut download:
cppTetris
- Tetris game on OpenGL/C++.- glut download:
https://www.opengl.org/resources/libraries/glut/
.
- glut download:
Hangman
- The hangman, also known as "hanged" is a classic game onC#
in which you will have to guess a word by choosing the letters that you think may be included in it. The hangman game will give you the option to choose vowels and consonants to try to guess which word is hidden.
iGenius
- Implementing of simple graphics game Colliding Balls onPython
.
JumpingMen
- Implementing of simple graphics game with jump man like Super Mario onC#
.
PingPong
- Classic Pong game onC#
for one player. This is a simple version of the game, but very customizable and fun.
PingPongTwo
- Classic Pong game onC#
for two players. This is a simple version of the game, but very customizable and fun.
Snake
- Basic snake game implemented onC#
.
TicTacToe
- Tic-Tac-Toe is a very simple two player game onC#
. So only two players can play at a time. This game is also known as Noughts and Crosses or Xs and Os game. One player plays with X and the other player plays with O. In this game we have a board consisting of a 3X3 grid. The number of grids may be increased.