[dev_arch_opt_3.0] 优化魔方

This commit is contained in:
lixiaopeng
2023-02-21 18:33:27 +08:00
parent b192238894
commit 1b1724668c
6 changed files with 275 additions and 227 deletions

View File

@@ -0,0 +1,17 @@
package com.mogo.eagle.core.function.api.mofang
/**
* 魔方数据的数据处理
* @author lixiaopeng
* @date 2023-02-20
*/
interface IMoGoMoFangListener {
/**
* 魔方数据的数据处理
* @param keyCode 按键类型
* @param action 按键状态
*/
fun onMofangHandle(keyCode: Int, action: Int): Boolean
}