Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. VelocityComponent = function VelocityComponent(vx, vy){
  2. this.vx = vx;
  3. this.vy = vy;
  4. return this;
  5. };
  6.  
  7. vs
  8.  
  9. function VelocityComponent(vx, vy){
  10. this.vx = vx;
  11. this.vy = vy;
  12. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement