2025-04-19 15:38:48 +08:00

18 lines
369 B
JavaScript

'use strict';
const withIs = require('../../..');
const Plant = require('./Plant');
function Algae() {
Plant.call(this, 'algae');
}
Algae.prototype = Object.create(Plant.prototype);
Algae.prototype.constructor = Algae;
module.exports = withIs.proto(Algae, {
className: 'Algae',
symbolName: '@org/package/Algae',
});
module.exports.WrappedClass = Algae;