Hello I have a problem with SyncListStructs I have this code:
SyncListStruct doesn't synchronizes
Code (CSharp):
- public struct player_struct {
- public string ID;
- public int Kills;
- public int Deaths;
- public int Points;
- public int Team;
- public player_struct(string n, string i, int t) {
- name = n;
- ID = i;
- Kills = 0;
- Points = 0;
- Deaths = 0;
- Team = t;
- }
- }
- public class SyncListPlayer :...