新接入FaceUnity美颜SDK
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
package com.yunbao.faceunity.entity;
|
||||
|
||||
/**
|
||||
* DESC:道具
|
||||
* Created on 2021/4/26
|
||||
*/
|
||||
public class PropBean {
|
||||
private int iconId;
|
||||
private String path;
|
||||
|
||||
|
||||
public PropBean(int iconId, String path) {
|
||||
this.iconId = iconId;
|
||||
this.path = path;
|
||||
}
|
||||
|
||||
public int getIconId() {
|
||||
return iconId;
|
||||
}
|
||||
|
||||
public void setIconId(int iconId) {
|
||||
this.iconId = iconId;
|
||||
}
|
||||
|
||||
public String getPath() {
|
||||
return path;
|
||||
}
|
||||
|
||||
public void setPath(String path) {
|
||||
this.path = path;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user