private void RemoveTile(HexagonTille tile)
    {
        int tileIndex = TileList.BinarySearch(tile);

        TileList.RemoveAt(tileIndex);
    }