import { Main, pick_random, render_and_copy } from "./common.tsx"; // thanks, https://dwarffortresswiki.org/index.php/Grass const grass_chars = ".,'`".split(""); const Blade = () =>
{pick_random(grass_chars)}
; const Field = ({ width }: { width: number }) => (
); render_and_copy();