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

17 lines
303 B
JavaScript

'use strict';
const withIs = require('../../..');
const Plant = require('./Plant');
class Algae extends Plant {
constructor() {
super('algae');
}
}
module.exports = withIs(Algae, {
className: 'Algae',
symbolName: '@org/package/Algae',
});
module.exports.WrappedClass = Algae;