mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-12 03:13:24 +01:00
8 lines
114 B
JavaScript
8 lines
114 B
JavaScript
TCAD = {};
|
|
|
|
TCAD.App = function() {
|
|
|
|
this.viewer = new TCAD.Viewer();
|
|
this.ui = new TCAD.UI(this.viewer);
|
|
|
|
};
|