Warcorrespondents/Assets/Scripts/AllLinesInfo.cs
Roman 8fc1bff703 1.添加了新场景序章-回忆
2.添加了电话线框架
3.添加了电话线进度条框架
4.完成了电报机线路检查系统
2021-07-04 01:00:01 +08:00

21 lines
383 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class AllLinesInfo : MonoBehaviour
{
// Start is called before the first frame update
public int needCount;
public int OKCount = 0;
void Start()
{
needCount = transform.childCount;
}
// Update is called once per frame
void Update()
{
}
}