mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-15 01:24:41 +08:00
8 lines
115 B
JavaScript
8 lines
115 B
JavaScript
export default class SimpleObject {
|
|
|
|
constructor(a = 8, b = 9) {
|
|
this.a = a
|
|
this.b = b
|
|
}
|
|
}
|