29 lines
584 B
Java
29 lines
584 B
Java
package com.ubt.jimu.unity;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class UnityEvent {
|
|
public static final int TYPE_CALL_APP = 102;
|
|
public static final int TYPE_CALL_UNITY = 101;
|
|
private String data;
|
|
private String name;
|
|
private int type;
|
|
|
|
public UnityEvent(int i, String str, String str2) {
|
|
this.type = i;
|
|
this.name = str;
|
|
this.data = str2;
|
|
}
|
|
|
|
public String getData() {
|
|
return this.data;
|
|
}
|
|
|
|
public String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
public int getType() {
|
|
return this.type;
|
|
}
|
|
}
|