Some checks failed
Lint / pre-commit Linting (push) Has been cancelled
Deploy js code to an instance of screeps. Some debugging tools are implemented. Reviewed-on: #6 Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de> Co-committed-by: Philipp Horstenkamp <philipp@horstenkamp.de>
12 lines
274 B
JavaScript
12 lines
274 B
JavaScript
'use strict'
|
|
var EventEmitter = require('events').EventEmitter
|
|
var util = require('util')
|
|
|
|
var trackerId = 0
|
|
var TrackerBase = module.exports = function (name) {
|
|
EventEmitter.call(this)
|
|
this.id = ++trackerId
|
|
this.name = name
|
|
}
|
|
util.inherits(TrackerBase, EventEmitter)
|