完成了自动驾驶按钮的点击触发逻辑抽离

Signed-off-by: 董宏宇 <martindhy@gmail.com>
This commit is contained in:
董宏宇
2021-09-23 10:57:34 +08:00
committed by liujing
parent 36844ee704
commit 65640589fd
15 changed files with 210 additions and 186 deletions

View File

@@ -0,0 +1,10 @@
package com.mogo.eagle.core.function.api.hmi.autopilot
/**
* @author xiaoyuzhou
* @date 2021/9/22 9:26 下午
* 自动驾驶控制按钮回调监听
*/
interface IMoGoCheckAutoPilotBtnListener {
fun onCheck(isChecked: Boolean)
}