powerfun-unity/Assets/Scripts/Devices/Ble/Characteristic/SuccessOnlyCharacteristicValue.cs
2021-06-04 13:22:59 +08:00

23 lines
571 B
C#

using Assets.Scripts.Ble.Commands;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scripts.Ble.Characteristic
{
public abstract class SuccessOnlyCharacteristicValue : BaseCharacteristicValue
{
protected SuccessOnlyCharacteristicValue(Guid id, byte[] data) : base(id, data)
{
}
// Token: 0x060022AB RID: 8875 RVA: 0x0008F4F0 File Offset: 0x0008D6F0
public override CommandResponseCode ToDeviceCommandResponseCode()
{
return CommandResponseCode.Success;
}
}
}