run-the-cat/src/world.js
2025-04-30 02:50:42 +09:00

9 lines
195 B
JavaScript

import { colors } from './theme.js';
export const groundHeight = 100;
export function draw(p, groundHeight) {
fill(colors.secondary);
rect(0, height - groundHeight, width, groundHeight);
}