@dip-in-milk/snake
v1.0.0-1
Published
Snake game engine
Downloads
6
Readme
Snake Game Engine
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);