zzznake/src/config.js
2025-10-30 19:57:06 +01:00

19 lines
211 B
JavaScript

export default {
bgColor: "grey",
unit: 20,
dimensions: {
width: 30,
height: 30,
},
snake: {
x: 25,
y: 25,
body: 2,
speed: 500,
},
food: {
x: null,
y: null,
},
};