1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Snake/sources/js/Snake.js

6 lines
139 B
JavaScript
Raw Normal View History

2021-03-11 09:39:52 +01:00
class Snake {
constructor(startPos = [0,0], size = 4) {
this.size = size;
this.body = [startPos, startPos*size]
}
}