26 lines
431 B
C#
26 lines
431 B
C#
using DefaultNamespace;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Batteryanimation : MonoBehaviour
|
|
{
|
|
public string ID;
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
/// <summary>
|
|
/// 接收电池数据
|
|
/// </summary>
|
|
/// <param name="qcbd"></param>
|
|
public void Batterydata(Qcbd qcbd)
|
|
{
|
|
Debug.Log("大大的电池");
|
|
}
|
|
}
|