mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 00:24:48 +08:00
10 lines
248 B
JavaScript
Executable File
10 lines
248 B
JavaScript
Executable File
import IEntity from "./IEntity.js"
|
|
import PinEntity from "./PinEntity.js"
|
|
|
|
/** @typedef {import("./IEntity.js").AnyValue} AnyValue */
|
|
|
|
export default class UserDefinedPinEntity extends IEntity {
|
|
|
|
static lookbehind = "UserDefinedPin"
|
|
}
|