node-haxball
Version:
The most powerful and lightweight API that allows you to develop your original Haxball(www.haxball.com) host, client, and standalone applications both on node.js and browser environments and also includes every possible hack and functionality that you can
14 lines (11 loc) • 389 B
JavaScript
module.exports = function(API){
var { Library } = API;
Object.setPrototypeOf(this, Library.prototype);
Library.call(this, "template", { // "template" is library's name. Every library should have a unique name.
version: 0.1,
author: "abc",
description: `This is a template library`
});
this.initialize = function(){};
this.finalize = function(){};
};