Files
ueblueprint/js/entity/IntegerEntity.js
barsdeveloper a0eeca11d1 Various fixes
2022-03-28 23:04:24 +02:00

29 lines
560 B
JavaScript
Executable File

// @ts-check
import IEntity from "./IEntity"
export default class IntegerEntity extends IEntity {
static attributes = {
value: Number,
}
constructor(options = {}) {
if (options.constructor == Number || options.constructor == String) {
options = {
value: options,
}
}
super(options)
this.value = Math.round(this.value)
}
valueOf() {
return this.value
}
toString() {
return this.value.toString()
}
}