File: src/material/Material.js
module.exports = Material;
/**
* Defines a physics material.
* @class Material
* @constructor
* @param {number} id Material identifier
* @author schteppe
*/
function Material(id){
/**
* The material identifier
* @property id
* @type {Number}
*/
this.id = id || Material.idCounter++;
}
Material.idCounter = 0;
