mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
11 lines
204 B
JavaScript
Executable File
11 lines
204 B
JavaScript
Executable File
import PinEntity from "./PinEntity.js"
|
|
|
|
export default class UnknownPinEntity extends PinEntity {
|
|
|
|
static lookbehind = ""
|
|
|
|
constructor(values = {}) {
|
|
super(values, true)
|
|
}
|
|
}
|