Trying to make a server

This commit is contained in:
2022-10-23 20:58:01 +02:00
parent 9d04246d75
commit 7a60703eb8
9 changed files with 125 additions and 16 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace shared
{
public class Assignation
{
public int controller { get; set; } // 0 || 1
public float ballX { get; set; }
public float ballY { get; set; }
}
}