Files
mixly3/common/modules/mixly-modules/common/layer.js
2024-07-19 10:16:00 +08:00

22 lines
290 B
JavaScript

goog.loadJs('common', () => {
goog.require('Mixly.Registry');
goog.provide('Mixly.Layer');
const { Registry } = Mixly;
class Layer {
static {
this.templates = new Registry();
this.register = function (key, value) {
}
}
constructor() {
}
}
});