boardzilla / boardzilla-core

Boardzilla core library
GNU Affero General Public License v3.0
179 stars 3 forks source link

make layout params an object so they can be destructured #41

Open rizen opened 5 months ago

rizen commented 5 months ago

this:

layout: (game, _player, boardSize) => {

should become this:

layout: ({game, boardSize}) => {