summaryrefslogtreecommitdiffstats
path: root/attractors2/attractor.js
blob: fc7bca1e94a1e4edb07c5c3b4e8e897daa8b89a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// -------------------------- Attractor -------------------------- //

( function() {

function Attractor( x, y, attraction ) {
  this.x = x;
  this.y = y;
}

window.Attractor = Attractor;

})();