UnityCommonLibrary.UI.ListItem.ListItem C# (CSharp) Method

ListItem() public method

public ListItem ( GameObject gameObj, Text text, RectTransform rt, Image background, UnityEngine.UI.Button button ) : System
gameObj UnityEngine.GameObject
text UnityEngine.UI.Text
rt UnityEngine.RectTransform
background Image
button UnityEngine.UI.Button
return System
        public ListItem(GameObject gameObj, Text text, RectTransform rt, Image background, Button button)
        {
            this.gameObj = gameObj;
            this.text = text;
            this.rt = rt;
            this.background = background;
            this.button = button;
        }
ListItem