function Vector()

in www/src/utils/particles.ts [20:23]


function Vector(x, y) {
	this.x = x || 0;
	this.y = y || 0;
}