Browse Source

Merge branch 'models' of github.com:snaky-particles/snaky-particles into models

Dima Mironov 10 năm trước cách đây
mục cha
commit
4b98f2f6bf
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 4 0
      models/position.js

+ 4 - 0
models/position.js

@@ -0,0 +1,4 @@
+var Position = function(x, y) {
+	this.x=x;
+	this.y=y;
+};