summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/UIExtUtilities.cs
blob: 69d4070c7cd82a071b6a8af869bcfee3f376e1e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace UIExt
{

    public static class UIExt
    {

        public static void GenerateItem(RectTransform root, LayoutItem template, int count, IList<object> data)
        {

        }

    }

}