26 lines
419 B
C#
26 lines
419 B
C#
|
|
using System.Collections;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using UnityEngine;
|
|||
|
|
|
|||
|
|
namespace BarGraph.VittorCloud
|
|||
|
|
{
|
|||
|
|
public class BarGorup : MonoBehaviour
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
#region publicVariables
|
|||
|
|
public List<GameObject> ListOfBar;
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
|
|||
|
|
#region UnityCallBacks
|
|||
|
|
private void Awake()
|
|||
|
|
{
|
|||
|
|
ListOfBar = new List<GameObject>();
|
|||
|
|
}
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|