-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataFromServer.cs
More file actions
26 lines (24 loc) · 821 Bytes
/
DataFromServer.cs
File metadata and controls
26 lines (24 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace main
{
public class DataFromServer
{
public string Type { get; set; }
public List<List<int>> NewShapeCoordinates = new List<List<int>>();
public List<int> NewShapeTypes = new List<int>();
public bool GameStartedFeedback = false;
public bool HomeSpotSetRequestFeedback = false;
public bool TargetSpotSetRequestFeedback = false;
public List<List<int>> Path = null;
public string Turn = null;
public string ErrorMessage = null;
public List<int> ClearSpotsData = null;
public string GameEndInfo = null;
public List<int> Scores = null;
public string OpponentUsername = null;
}
}