void OnGUI()
    {
        if (_view != null)
        {
            _view.Draw();
        }

        GUI.DrawTexture(new Rect(0, 33, 900, 2), _lineTexure);
        GUI.DrawTexture(new Rect(0, 60, 900, 1), _lineTexure);
        GUI.DrawTexture(new Rect(330, 33, 2, 567), _lineTexure);
    }