SyntaxSquad/DADProject#15 feat: Added Multiplayer View and Stuff
This commit is contained in:
@@ -7,6 +7,8 @@
|
||||
:player-score="playerScore"
|
||||
:opponent-score="opponentScore"
|
||||
:current-turn="currentTurn"
|
||||
:player-name="playerName"
|
||||
:opponent-name="opponentName"
|
||||
:round-number="1"
|
||||
/>
|
||||
</div>
|
||||
@@ -62,6 +64,8 @@ const props = defineProps({
|
||||
// REMOVIDO: playableCardIndices (já não precisamos dele)
|
||||
playerScore: { type: Number, default: 0 },
|
||||
opponentScore: { type: Number, default: 0 },
|
||||
playerName: { type: String, default: 'You' },
|
||||
opponentName: { type: String, default: 'Bot' },
|
||||
currentTurn: {
|
||||
type: String,
|
||||
default: 'player',
|
||||
|
||||
Reference in New Issue
Block a user