run-the-cat/src/world.js
2025-05-01 17:17:26 +09:00

9 lines
201 B
JavaScript

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