summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XColliderModelLinker.cs
blob: 34ade57b11cb391218e687d8be4ad7bc65069733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using UnityEngine;
using XUtliPoolLib;
using System.Collections.Generic;

public class XColliderModelLinker : MonoBehaviour
{
    public List<GameObject> Models = new List<GameObject>();
    void Start()
    {
    }

    public List<GameObject> GetLinkedModel()
    {
        return Models;
    }

    public bool Deprecated
    {
        get;
        set;
    }
}