提交 | 用户 | 时间
|
ce910c
|
1 |
package com.netsdk.lib.enumeration; |
H |
2 |
|
|
3 |
import com.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
|
|
6 |
/** |
|
7 |
* 帽子类型 |
|
8 |
* |
|
9 |
* @author : 260611 |
|
10 |
* @since : Created in 2021/10/19 20:21 |
|
11 |
*/ |
|
12 |
public class EM_CAP_TYPE extends NetSDKLib.SdkStructure { |
|
13 |
|
|
14 |
/** |
|
15 |
* 未知 |
|
16 |
*/ |
|
17 |
public static final int EM_CAP_UNKNOWN = 0; |
|
18 |
/** |
|
19 |
* 普通帽子 |
|
20 |
*/ |
|
21 |
public static final int EM_CAP_ORDINARY = 1; |
|
22 |
/** |
|
23 |
* 头盔 |
|
24 |
*/ |
|
25 |
public static final int EM_CAP_HELMET = 2; |
|
26 |
/** |
|
27 |
* 安全帽 |
|
28 |
*/ |
|
29 |
public static final int EM_CAP_SAFE = 3; |
|
30 |
} |