all files / node-csgo-parser/lib/ MusicKit.js

100% Statements 4/4
100% Branches 0/0
100% Functions 1/1
100% Lines 4/4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26                                    29× 29× 29×        
'use strict';
/* jshint node: true */
 
/**
 * @typedef MusicKit
 * @type Object
 * @property {String} name I18N name of the music kit
 * @property {String} techName Technical name of the music kit
 * @property {String} defIndex Index/Key of the music kit
 */
 
/**
 * Standard return for a MusicKit.
 * @class
 */
class MusicKit {
	/** @constructor */
	constructor(name, techName, defIndex){
		this.name = name;
		this.techName = techName;
		this.defIndex = defIndex;
	}
	
}
 
module.exports = MusicKit;