UNPKG

374 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.ParticlesInteractorBase = void 0;
4const Enums_1 = require("../Enums");
5class ParticlesInteractorBase {
6 constructor(container) {
7 this.container = container;
8 this.type = Enums_1.InteractorType.Particles;
9 }
10}
11exports.ParticlesInteractorBase = ParticlesInteractorBase;