Files
ueblueprint/js/entity/UserDefinedPinEntity.js
2023-04-04 22:52:42 +02:00

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"
}