23 lines
405 B
C#
23 lines
405 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class TooRoomlMannger : MonoBehaviour
|
|
{
|
|
public BaseToolOrDevice[] allTMDs;
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
foreach (var tmd in allTMDs)
|
|
{
|
|
tmd.GetInfo();
|
|
}
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|