Initial commit
This commit is contained in:
28
sources/com/ubt/jimu/unity/UnityEvent.java
Normal file
28
sources/com/ubt/jimu/unity/UnityEvent.java
Normal file
@@ -0,0 +1,28 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user