2dmap

A simple coordinate map for 2d games


License
BSD-2-Clause
Install
npm install 2dmap@0.0.1

Documentation

2dmap

NPM version Build Status

A simple coordinate map for use in 2d games. Extracted from vida.

On the server

npm install 2dmap

In the browser

<script src="http://cdn.partywavejs.org/2dmap"></script>
<script>
var Map = require('2dmap');
var gameMap = new Map({
  height: 10,
  width: 10
});
</script>