summaryrefslogtreecommitdiff
path: root/game/entities/wall.js
blob: 8a6e45d810e50e60d73039bed2f938c5a0c89728 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

var EntityBase = require('../entities/entityBase');

var Wall = function(game, x, y) {
  EntityBase.call(this, game, x, y, 'wall');
};

Wall.prototype = Object.create(EntityBase.prototype);
Wall.prototype.constructor = Wall;

module.exports = Wall;