mirror of
https://github.com/chenasraf/strange-tactics.git
synced 2026-05-18 01:59:02 +00:00
9 lines
189 B
JavaScript
9 lines
189 B
JavaScript
const w = 720,
|
|
h = 480,
|
|
gridSize = 48,
|
|
partySize = 5,
|
|
cols = Math.floor(w / gridSize),
|
|
rows = Math.floor(h / gridSize)
|
|
|
|
module.exports = { w, h, gridSize, partySize, cols, rows }
|