This website works better with JavaScript
Home
Esplora
Aiuto
Registrati
Accedi
bixel
/
snaky-particles
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Sfoglia il codice sorgente
Merge branch 'models' of github.com:snaky-particles/snaky-particles into models
Dima Mironov
10 anni fa
parent
ef7d48e10d
c21fa90b53
commit
4b98f2f6bf
1 ha cambiato i file
con
4 aggiunte
e
0 eliminazioni
Visualizzazione separata
Mostra Diff Stats
4
0
models/position.js
+ 4
- 0
models/position.js
Vedi File
@@ -0,0 +1,4 @@
+var Position = function(x, y) {
+ this.x=x;
+ this.y=y;
+};