jimu-decompiled/sources/com/ubt/jimu/unity/UnityEvent.java
2025-05-13 19:24:51 +02:00

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;
}
}