humus-old/client/app.js
2019-04-19 20:01:06 -05:00

28 lines
466 B
JavaScript

import {compose} from '@avocado/core';
import {EventEmitter, Property} from '@avocado/mixins';
const decorate = compose(
EventEmitter,
Property('isDebugging', {
track: true,
}),
Property('selfEntity', {
track: true,
}),
Property('selfEntityUuid', {
track: true,
}),
);
export class App extends decorate(class {}) {
// Stub for now!
readConfig() {
return {
visibleScale: [2, 2],
visibleSize: [320, 180],
};
}
}