mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 16:44:49 +08:00
6 lines
123 B
JavaScript
Executable File
6 lines
123 B
JavaScript
Executable File
export default class Primitive {
|
|
toString() {
|
|
return "Unimplemented for " + this.constructor.name
|
|
}
|
|
}
|