So I keep getting this error
Unsupported enum type ‘System.Collections.Generic.List’ used for field ‘games’ in class ‘RemoteGames’
functionally all of my code appears to be working correctly but this error is getting me down Why is this occurring? Here’s the code that appears to be generating that error
public List<NetworkID> games = new List<NetworkID>();
foreach (MatchDesc match in matches.matches) {
if (!games.Contains(match.networkId)) {
games.Add(match.networkId);
SetupGame(match);
}
}
What is unsupported about that? It certainly appears to function…