Files
ueblueprint/js/entity/TypeInitialization.js
2021-10-24 00:17:16 +02:00

9 lines
250 B
JavaScript

import Utility from "../Utility"
export default class TypeInitialization {
constructor(value, showDefault = true, type = Utility.getType(value)) {
this.value = value
this.showDefault = showDefault
this.type = type
}
}