Skip to content
Snippets Groups Projects
Commit 360215b2 authored by Nina Forde's avatar Nina Forde Committed by Pierre Roussel
Browse files

Data

parent 4ba39402
No related branches found
No related tags found
5 merge requests!104devV2 comm,!62Feature - Rejoindre Partie,!61Modification de la classe Comm_calls_Data_Server_Impl afin que...,!55Data,!53feat : Intégration IHM-Main
...@@ -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)
{
}
}
} }
...@@ -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);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment