Last active
September 7, 2021 06:16
-
-
Save russelllim22/2100a0b3f9f1bbca9c3c0aedd57fe002 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="game-board" > | |
<UnitCircle {currentAngle} {showAngle} {showLength}/> | |
<ProgressBar {currentScore}/> | |
<ToolBar {toolBarOpen} | |
bind:trigFunctions | |
bind:angleTypes | |
bind:angleQuadrants | |
bind:settingChanged | |
bind:gameTimer | |
/> | |
{#if gameOver} | |
<GameOver | |
bind:currentScore | |
bind:numErrors | |
bind:gameOver/> | |
{:else} | |
<Question {currentQuestion}/> | |
<MCOptions {correctClickFunc} {wrongClickFunc} {theOptions}/> | |
<Timer {gameTimer}/> | |
{/if} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment