Files
ueblueprint/js/entity/IPrintableEntity.js
barsdeveloper ecc71b76d1 WIP
2024-05-31 15:09:48 +02:00

9 lines
146 B
JavaScript

import IEntity from "./IEntity.js"
export default class IPrintableEntity extends IEntity {
print() {
return this.toString()
}
}