Files
pdlivexp/FaceUnity/src/main/java/com/yunbao/faceunity/entity/BgSegGreenBean.kt

18 lines
429 B
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.yunbao.faceunity.entity
/**
*
* DESC
* Created on 2020/12/4
*
*/
data class BgSegGreenBean(val key: String, val desRes: Int, val closeRes: Int, val openRes: Int, val type: ButtonType) {
enum class ButtonType{
NORMAL1_BUTTON,//普通一号按钮
NORMAL2_BUTTON,//普通二号按钮
BACK_BUTTON,//返回按钮
SWITCH_BUTTON//切换按钮,切换整个按钮功能
}
}