Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 1.1 KB

README.md

File metadata and controls

30 lines (19 loc) · 1.1 KB

A simple ping pong like game

A simple two player game, written in Go, using Ebitengine a dead simple 2D game library for Go.

Intention to write this was to get an overview, before implementing in Jack here.

sample of game

How to play

So to play, it requires two players, left player and right player. For left player pressing w will move left block up, pressing s down.

For right player pressing up arrow key will go up, pressing down arrow key down

How to run

make sure you have installed

Run the following commands

git clone https://github.com/ishwar00/simple-ping-pong-game.git
cd simple-ping-pong-game/src
go run main.go

TODO

  • make it multiplayer game (Client-Server Architecture)