Sfoglia il codice sorgente

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

Dima Mironov 10 anni fa
parent
commit
4b98f2f6bf
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  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;
+};