Particle.js 294 B

123456789101112131415
  1. //define([],function () {
  2. var Particle = function () {
  3. this.x = null;
  4. this.dx = null;
  5. this.dx = null;
  6. this.y = null;
  7. this.age = null;
  8. this.birthAge = null;
  9. this.path = null;
  10. };
  11. // return Particle;
  12. //})
  13. export default Particle