[8.0.0]调试面板-版本信息增加动态配置鹰眼显示MAP版本

This commit is contained in:
xuxinchao
2025-05-20 16:11:33 +08:00
parent 89641b48df
commit 8de8ea1d40
7 changed files with 129 additions and 6 deletions

View File

@@ -0,0 +1,21 @@
package com.mogo.eagle.core.function.call.setting
import com.mogo.eagle.core.function.api.setting.IMapShowNameListener
import com.mogo.eagle.core.function.call.base.CallerBase
/**
* 工控机展示版本
*/
object CallerMapShowNameManager: CallerBase<IMapShowNameListener>() {
/**
* 工控机显示版本
* @param showName 展示版本
*/
fun invokeMapShowName(showName: String){
M_LISTENERS.forEach{
val listener = it.value
listener.changeMapShowName(showName)
}
}
}