Drop two helpers nothing calls

This commit is contained in:
2026-09-08 15:24:01 -07:00
parent 5f8ad511f0
commit 08b2cc5391
3 changed files with 0 additions and 9 deletions
-1
View File
@@ -124,7 +124,6 @@
.warn { color: var(--atari-red); text-shadow: 0 0 8px rgba(255, 138, 122, 0.5); }
.money { color: var(--atari-green); }
.inv,
.inv-line {
background: var(--atari-text);
color: var(--atari-screen-dark);
-5
View File
@@ -53,11 +53,6 @@ export function Line({ children, className = '' }: { children?: ReactNode; class
return <div className={`line ${className}`}>{children ?? ' '}</div>
}
/** Atari inverse video: light background, dark characters. */
export function Inv({ children }: { children: ReactNode }) {
return <span className="inv">{children}</span>
}
export function Btn({
children,
onClick,
-3
View File
@@ -15,7 +15,4 @@ export function makeRng(seed: number) {
export type Rng = ReturnType<typeof makeRng>
export const randInt = (rng: Rng, min: number, max: number) =>
min + Math.floor(rng() * (max - min + 1))
export const chance = (rng: Rng, p: number) => rng() < p