This commit is contained in:
wangcongtao
2020-01-10 15:32:35 +08:00
parent 22e5be8e15
commit b5dfac1c2d
10 changed files with 120 additions and 23 deletions

View File

@@ -25,12 +25,17 @@ public enum EnumMapUI {
/**
* 白天模式
*/
Type_Light( 3, 4 ),
Type_Light( 3, 5 ),
/**
* 夜晚模式
*/
Type_Night( 4, 3 );
Type_Night( 4, 4 ),
/**
* 夜晚模式
*/
Type_AUTO_LIGHT_Night( 5, 3 );
private int next;
private int code;