Skip to content

Commit

Permalink
Merge pull request #15 from LukeRenton/game-page/adding-local-game-board
Browse files Browse the repository at this point in the history
Game page/adding local game board
  • Loading branch information
2557606 authored May 8, 2024
2 parents 68ee25a + 5ac7c57 commit 46003a0
Show file tree
Hide file tree
Showing 8 changed files with 89 additions and 4 deletions.
8 changes: 7 additions & 1 deletion client/build/static/js/main.a056b68b.js

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions client/build/static/js/main.ef1c318b.js

Large diffs are not rendered by default.

67 changes: 67 additions & 0 deletions client/build/static/js/main.ef1c318b.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
/*!
* Bootstrap v5.3.3 (https://getbootstrap.com/)
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/

/**
* @license React
* react-dom.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/**
* @license React
* react-jsx-runtime.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/**
* @license React
* react.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/**
* @license React
* scheduler.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/**
* @remix-run/router v1.15.3
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/

/**
* React Router v6.22.3
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/
1 change: 1 addition & 0 deletions client/build/static/js/main.ef1c318b.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/src/Components/Board.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default function Board( props ) {
</div>
</div>
<div className='board-clues'>
<Clues clues={props.clues} hint={props.hint}></Clues>
<Clues clues={props.clues} hint={props.hint} row={props.row} col={props.col}></Clues>
</div>
</div>
)
Expand Down
2 changes: 2 additions & 0 deletions client/src/Components/Clues.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ export default function Clues(props) {
<h2>Hint</h2>
<p>{!verifyShowHint ? (showHint ? props.hint : '') : 'Click again to show hint. Make sure all players are aware of the hint.'}</p>
<PlantButton onClick={handleShowHint}>{!showHint ? 'Show Hint' : 'Hide Hint'}</PlantButton>
<h2>Cryptid Location</h2>
<p>The location of the cryptid is at Row: {props.row} Column: {props.col}</p>
</div>
</div>
}
Expand Down
Binary file added client/src/Images/Tutorial/bird.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions client/src/Styles/Tutorial.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,5 +116,5 @@ body{
figcaption {
font-size: 0.75rem; /* This sets the font size of the caption to 0.75rem */
}


0 comments on commit 46003a0

Please sign in to comment.