igir
Version:
🕹 A zero-setup ROM collection manager that sorts, filters, extracts or archives, patches, and reports on collections of any size on any OS.
17 lines (16 loc) • 436 B
JavaScript
import ROM from './rom.js';
/**
* "CMPro includes disk support but at this time, RomCenter does not. MD5 and
* SHA1 do not both need to be specified in the data file:"
* @see http://www.logiqx.com/DatFAQs/CMPro.php
*/
export default class Disk extends ROM {
constructor(props) {
super(props
? {
...props,
size: props.size ?? 0,
}
: undefined);
}
}