14 lines
250 B
C#
Raw Permalink Normal View History

2021-03-29 09:10:59 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2021-03-30 14:23:41 +08:00
namespace Assets.Scripts.Devices.Ant.Interfaces
2021-03-29 09:10:59 +08:00
{
2021-03-30 14:23:41 +08:00
public interface IPowerDevice
2021-03-29 09:10:59 +08:00
{
2021-03-30 14:23:41 +08:00
int Power { get; set; }
2021-03-29 09:10:59 +08:00
}
}