Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Hagraah Pendu
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sofiane Lasri
Hagraah Pendu
Commits
6f44aa6d
Commit
6f44aa6d
authored
May 9, 2023
by
Sofiane Lasri
Browse files
Options
Downloads
Patches
Plain Diff
Création des méthodes requises dans la classe GameEngine
parent
61888b70
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Pendu/GameEngine.swift
+26
-0
26 additions, 0 deletions
Pendu/GameEngine.swift
with
26 additions
and
0 deletions
Pendu/GameEngine.swift
+
26
−
0
View file @
6f44aa6d
...
...
@@ -29,4 +29,30 @@ class GameEngine: NSObject {
override
init
()
{
//code
}
public
func
startNewGame
(
difficulty
:
String
)
->
Void
{
// Réinitialisation des propriétés et génération d'un nouveau mot à deviner
}
public
func
guessLetter
(
letter
:
Character
)
->
Void
{
// Vérification de la lettre proposée par le joueur
// Mise à jour de l'état de la lettre
}
public
func
isGameOver
()
->
Bool
{
// Vérification si le jeu est terminé
return
false
;
}
public
func
isLetterGuesses
(
letter
:
Character
)
->
Bool
{
return
false
;
}
public
func
saveScore
()
->
Void
{
// Enregistrement du score dans la base Core Data
}
static
func
getOnlineScoreboard
()
->
Void
{
// Récupération du classement depuis le serveur
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment