mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-15 01:24:41 +08:00
8 lines
186 B
JavaScript
8 lines
186 B
JavaScript
import Entity from "./Entity"
|
|
|
|
export default class Integer extends Entity {
|
|
constructor(value) {
|
|
super()
|
|
this.value = Math.round(new Number(value).valueOf())
|
|
}
|
|
} |