mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 12:53:52 +01:00
15 lines
134 B
JavaScript
15 lines
134 B
JavaScript
|
|
export class MObject {
|
|
|
|
TYPE;
|
|
|
|
id;
|
|
ext = {};
|
|
|
|
constructor(TYPE, id) {
|
|
this.TYPE = TYPE;
|
|
this.id = id;
|
|
}
|
|
|
|
}
|
|
|