BF2Statistics.MapListEntry.MapListEntry C# (CSharp) Method

MapListEntry() public method

Creates a new instance of MapListEntry
public MapListEntry ( string MapName = "", string GameMode = "", int MapSize = 16 ) : System
MapName string The Map Name for this entry
GameMode string The Gamemode for this entry
MapSize int The Map size of this entry (16,32,64,128)
return System
        public MapListEntry(string MapName = "", string GameMode = "", int MapSize = 16)
        {
            this.MapName = MapName;
            this.GameMode = GameMode;
            this.MapSize = MapSize;
        }