index
:
go
master
(unfinished) Go game in Javascript. First project for the web development course
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
engine
/
visual
/
vector2.js
blob: a3a1bc25d4c06b9dc60e1b618a09864fac8ee5f3 (
plain
)
1
2
3
4
5
6
export class Vector2 { constructor(x, y) { this.x = x this.y = y } }