9 lines
195 B
JavaScript
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);
|
|
}
|