diff options
author | Lizzy Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-11 16:22:06 -0600 |
---|---|---|
committer | Lizzy Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-11 16:22:06 -0600 |
commit | 32879581e53fae5e684c24b44433172d8375d69e (patch) | |
tree | 307551e59409c2f01168e5fabeff200319c18aa7 /src/components | |
parent | 4da17f6dedb4475c7730bdeab9ad3e339f0bfdee (diff) | |
download | the-abstraction-engine-32879581e53fae5e684c24b44433172d8375d69e.tar.gz the-abstraction-engine-32879581e53fae5e684c24b44433172d8375d69e.zip |
support underscores in function application, add sign entity
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/GameCanvas.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/GameCanvas.tsx b/src/components/GameCanvas.tsx index b6c585d..18dd52e 100644 --- a/src/components/GameCanvas.tsx +++ b/src/components/GameCanvas.tsx @@ -11,7 +11,7 @@ export interface GameCanvasProps { export const GameCanvas = ({ width, height }: GameCanvasProps) => { const canvasRef = useRef<HTMLCanvasElement>(null); const [game, setGame] = useState<TheAbstractionEngine>(); - const [ready, setReady] = useState(false); + const [ready, setReady] = useState(true); // false); const [loading, setLoading] = useState(true); useEffect(() => { |