Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LO23
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Talitha Girard
LO23
Commits
360215b2
Commit
360215b2
authored
2 years ago
by
Nina Forde
Committed by
Pierre Roussel
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Data
parent
4ba39402
No related branches found
Branches containing commit
No related tags found
Tags containing commit
5 merge requests
!104
devV2 comm
,
!62
Feature - Rejoindre Partie
,
!61
Modification de la classe Comm_calls_Data_Server_Impl afin que...
,
!55
Data
,
!53
feat : Intégration IHM-Main
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vs/LO23/Client/data/Comm_calls_Data_Client_Impl.cs
+39
-1
39 additions, 1 deletion
vs/LO23/Client/data/Comm_calls_Data_Client_Impl.cs
vs/LO23/Shared/interfaces/Interface_Comm_calls_Data_Client.cs
+16
-0
16 additions, 0 deletions
...O23/Shared/interfaces/Interface_Comm_calls_Data_Client.cs
with
55 additions
and
1 deletion
vs/LO23/Client/data/Comm_calls_Data_Client_Impl.cs
+
39
−
1
View file @
360215b2
...
@@ -19,6 +19,44 @@ namespace Client.Data
...
@@ -19,6 +19,44 @@ namespace Client.Data
this
.
users
=
users
;
this
.
users
=
users
;
this
.
games
=
games
;
this
.
games
=
games
;
}
}
}
public
void
setGamesAndUsers
(
List
<
LightUser
>
listUsers
,
List
<
LightGame
>
listGame
)
{
}
public
void
setLoggedOut
()
{
}
public
void
updateMessages
(
ChatMessage
message
)
{
}
public
void
updateGame
(
Game
game
)
{
}
public
void
setGame
(
Game
game
)
{
}
public
LightUser
getProfile
()
{
return
new
LightUser
();
}
public
void
getProfileReturn
(
LightUser
user
)
{
}
public
void
removeUserFromListUsers
(
LightUser
user
)
{
}
public
void
addUserToListUsers
(
LightUser
user
)
{
}
public
void
removeGameFromListGames
(
LightGame
game
)
{
}
public
void
addGameToListGames
(
LightGame
game
)
{
}
}
}
}
This diff is collapsed.
Click to expand it.
vs/LO23/Shared/interfaces/Interface_Comm_calls_Data_Client.cs
+
16
−
0
View file @
360215b2
...
@@ -3,11 +3,27 @@ using System.Collections.Generic;
...
@@ -3,11 +3,27 @@ using System.Collections.Generic;
using
System.Linq
;
using
System.Linq
;
using
System.Text
;
using
System.Text
;
using
System.Threading.Tasks
;
using
System.Threading.Tasks
;
using
Shared.data
;
namespace
Shared.interfaces
namespace
Shared.interfaces
{
{
public
interface
Interface_Comm_calls_Data_Client
public
interface
Interface_Comm_calls_Data_Client
{
{
void
setGamesAndUsers
(
List
<
LightUser
>
listUsers
,
List
<
LightGame
>
listGame
);
void
setLoggedOut
();
void
updateMessages
(
ChatMessage
message
);
void
updateGame
(
Game
game
);
void
setGame
(
Game
game
);
LightUser
getProfile
();
void
getProfileReturn
(
LightUser
user
);
void
removeUserFromListUsers
(
LightUser
user
);
void
addUserToListUsers
(
LightUser
user
);
void
removeGameFromListGames
(
LightGame
game
);
void
addGameToListGames
(
LightGame
game
);
}
}
}
}
...
...
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
register
or
sign in
to comment