mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 14:45:35 +00:00
16 lines
293 B
JavaScript
Executable File
16 lines
293 B
JavaScript
Executable File
/**
|
|
* Modification - a modification and its value
|
|
*/
|
|
export default class Modification {
|
|
|
|
/**
|
|
* @param {String} id Unique modification ID
|
|
* @param {Number} value Value of the modification
|
|
*/
|
|
constructor(id, value) {
|
|
this.id = id;
|
|
this.value = value;
|
|
}
|
|
|
|
}
|