Cats-vs-Mice/constants/Prototype.js
2025-05-10 15:10:42 +09:00

23 lines
430 B
JavaScript

// Numbers from the prototype designed on Figma
export const prototypeFrame = {
border: 10,
width: 800,
height: 569,
tileWidth: 72,
tileHeight: 90,
itemWidth: 54,
itemHeight: 64,
padding_left: 92,
padding_up: 109,
paddingRobot: 38,
robotSize: 64,
controlPanelGap: 8
}
// Numbers used in the actual gameFrame
export const gameFrame = {
x: 0,
y: 0,
rows: 5,
cols: 9
}