IBatteryCallBack.cs 292 B

123456789
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public interface IBatteryCallBack {
  5. void BATTERY_CHANGED(int voltage, int health, int level, int pluged, int status, string technology, int temperature);
  6. void BATTERY_LOW();
  7. void BATTERY_OKAY();
  8. }