objects.js 194 B

123456789101112
  1. class Objects {
  2. constructor() {
  3. this._objects = [];
  4. }
  5. add(object) {
  6. this._objects.push(object);
  7. }
  8. get() {
  9. return this._objects;
  10. }
  11. }
  12. export const objects = new Objects();