SecretOfGaia.Terrain.this C# (CSharp) Method

this() public method

public this ( int position ) : SecretOfGaia.Carte
position int
return SecretOfGaia.Carte
        public override Carte this[int position]
        {
            get
            {
                if (_cartesSupreposées.ContainsKey(position))
                {
                    return _cartesSupreposées[position].Last();
                }
                else
                {
                    return base[position];
                }
            }
        }