https://github.com/hixraid/snake
Snake game (Go, Ebitengine)
https://github.com/hixraid/snake
ebiten game go singleplayer snake
Last synced: 5 months ago
JSON representation
Snake game (Go, Ebitengine)
- Host: GitHub
- URL: https://github.com/hixraid/snake
- Owner: HixRaid
- License: mit
- Created: 2023-10-31T19:57:50.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-15T20:33:32.000Z (almost 2 years ago)
- Last Synced: 2025-01-22T21:25:52.714Z (11 months ago)
- Topics: ebiten, game, go, singleplayer, snake
- Language: Go
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# đ Snake
Snake is a classic arcade game in which the player needs to control a snake to increase its length, eat food and avoid collisions with walls and its own tail.
## đ¯ Goal
The goal of the game is to score the maximum number of points by eating food that randomly appears on the playing field. Every time the snake eats food, it gets longer. However, as she grows, the player must be careful not to run into her tail, otherwise the game will end.
## đšī¸ Control
> W, A, S, D
The snake is controlled using the keys on the keyboard. The snake moves in a straight line and the player must indicate its direction using the left or right turn keys. If the snake reaches the edge of the playing field, it appears on the opposite side.