Skip to content
Snippets Groups Projects
Commit ba3ebb4d authored by Jules Darold's avatar Jules Darold Committed by Pierre Roussel
Browse files

fixed classname LigthUser to LightUser

parent 360c0f72
No related branches found
No related tags found
4 merge requests!50Daroldju/fix/method signature in interfaces,!43Daroldju/fix/method signature in interfaces,!39Sylvain/feature/correction type,!36Data
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
<Compile Include="data\LightGame.cs" /> <Compile Include="data\LightGame.cs" />
<Compile Include="data\Round.cs" /> <Compile Include="data\Round.cs" />
<Compile Include="data\GameAction.cs" /> <Compile Include="data\GameAction.cs" />
<Compile Include="data\LigthUser.cs" /> <Compile Include="data\LightUser.cs" />
<Compile Include="data\Phase.cs" /> <Compile Include="data\Phase.cs" />
<Compile Include="data\Card.cs" /> <Compile Include="data\Card.cs" />
<Compile Include="data\ChatMessage.cs" /> <Compile Include="data\ChatMessage.cs" />
......
...@@ -7,14 +7,14 @@ using System.Threading.Tasks; ...@@ -7,14 +7,14 @@ using System.Threading.Tasks;
namespace Shared.data namespace Shared.data
{ {
public class LigthUser public class LightUser
{ {
public int id; public int id;
public string userName;// userName et login c'est la même chose public string userName;// userName et login c'est la même chose
public string image; public string image;
public LigthUser(int idt = 1, string userNamet = "usernametest", string imaget = "imagetest") public LightUser(int idt = 1, string userNamet = "usernametest", string imaget = "imagetest")
{ {
if (idt == 1) { id = idt; } if (idt == 1) { id = idt; }
else else
......
...@@ -7,7 +7,7 @@ using Shared.data; ...@@ -7,7 +7,7 @@ using Shared.data;
namespace Shared.data { namespace Shared.data {
public class User : LigthUser public class User : LightUser
{ {
public string password; public string password;
......
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