diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-08-12 13:49:16 -0600 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-08-12 13:49:16 -0600 |
commit | c6e9baa0009f7cce0f6ff156a3957ef04a8cb684 (patch) | |
tree | 9766a4a33ad1c86aa71a5f92daf8917f3e5f5eed /client/src/components/GameCanvas.svelte | |
parent | b67ffb57c1bf6e9628339a3f43c71ccebdb46136 (diff) | |
download | jumpstorm-c6e9baa0009f7cce0f6ff156a3957ef04a8cb684.tar.gz jumpstorm-c6e9baa0009f7cce0f6ff156a3957ef04a8cb684.zip |
the great engine refactor
Diffstat (limited to 'client/src/components/GameCanvas.svelte')
-rw-r--r-- | client/src/components/GameCanvas.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/components/GameCanvas.svelte b/client/src/components/GameCanvas.svelte index d7abecf..ae8c1b0 100644 --- a/client/src/components/GameCanvas.svelte +++ b/client/src/components/GameCanvas.svelte @@ -1,7 +1,7 @@ <script lang="ts"> import { onMount } from "svelte"; import { loadAssets } from "@engine/config"; - import { JumpStorm} from "../Jumpstorm"; + import { JumpStorm } from "../JumpStorm"; let canvas: HTMLCanvasElement; let ctx: CanvasRenderingContext2D; |