15 lines
271 B
JavaScript
15 lines
271 B
JavaScript
|
//define([],function () {
|
||
|
|
||
|
var Particle = function () {
|
||
|
this.x = null;
|
||
|
this.dx = null;
|
||
|
this.dx = null;
|
||
|
this.y = null;
|
||
|
this.age = null;
|
||
|
this.birthAge = null;
|
||
|
this.path = null;
|
||
|
};
|
||
|
|
||
|
// return Particle;
|
||
|
//})
|