mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-16 02:10:38 +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())
|
|
}
|
|
} |