[3.4.0]Taxi乘客屏转向灯+转向灯展示隐藏方法

This commit is contained in:
xuxinchao
2023-07-20 17:14:40 +08:00
parent 68fedf9bce
commit b334ff38b8
16 changed files with 189 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
package com.mogo.eagle.core.function.api.datacenter.union
/**
* 转向灯监听接口
*/
interface IMoGoTurnLightListener {
fun hideTurnLightView(){}
}

View File

@@ -159,4 +159,14 @@ interface IMoGoHmiProvider :IProvider{
* 隐藏红绿灯
*/
fun hideTrafficLightView()
/**
* 展示转向灯
*/
fun showTurnLightView()
/**
* 隐藏转向灯
*/
fun hideTurnLightView()
}