1.0.0-1 • Published 7 years ago

@dip-in-milk/snake v1.0.0-1

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Snake Game Engine

NPM version Build Status Coverage Status GitHub issues GitHub stars Slack

Install

npm install --save @dip-in-milk/snake

API

import Snake from '@dip-in-milk/snake';

// create a new Game with width and height
const game = new Game(20, 20);

// create a new Player
const player1 = new Player(game);

// add a fruit
game.gameObjects.push(new Fruit());

// start ticking :)
setInterval(() => game.tick(), 100);
1.0.0-1

7 years ago

1.0.1-2

7 years ago

1.0.1-1

7 years ago

1.0.1-0

7 years ago

1.0.0

7 years ago