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

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

var PoisonPill = function(game, x, y) {
  EntityBase.call(this, game, x, y, 'poison-pill');
};

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

module.exports = PoisonPill;