using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class CustomScrollView : MonoBehaviour
{

    public ScrollRect scrollRect;
    public Image scrollViewImage;
    public GameObject content;

    public RectTransform scrollBarHorizontal;
    public Image scrollBarHorizontalImage;

    public RectTransform scrollBarHorizontalSlidingArea;
    public RectTransform scrollBarHorizontalHandle;
    public Image scrollBarHorizontalHandleImage;

    public RectTransform scrollBarVertical;
    public Image scrollBarVerticalImage;

    public RectTransform scrollBarVerticalSlidingArea;
    public RectTransform scrollBarVerticalHandle;
    public Image scrollBarVerticalHandleImage;


}
