mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-14 00:54:48 +08:00
9 lines
146 B
JavaScript
9 lines
146 B
JavaScript
import IEntity from "./IEntity.js"
|
|
|
|
export default class IPrintableEntity extends IEntity {
|
|
|
|
print() {
|
|
return this.toString()
|
|
}
|
|
}
|