mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-14 07:55:57 +01:00
* fixed GetAcitivityInfoReq proto * added draft to gadget Scene gatget, to let the client know the propper minigame for some entities
21 lines
420 B
Java
21 lines
420 B
Java
package emu.grasscutter.scripts.data;
|
|
|
|
import lombok.Setter;
|
|
import lombok.ToString;
|
|
|
|
@ToString
|
|
@Setter
|
|
public class SceneGadget extends SceneObject{
|
|
public int gadget_id;
|
|
public int state;
|
|
public int point_type;
|
|
public SceneBossChest boss_chest;
|
|
public int interact_id;
|
|
public boolean isOneoff;
|
|
public int draft_id;
|
|
|
|
public void setIsOneoff(boolean isOneoff){
|
|
this.isOneoff = isOneoff;
|
|
}
|
|
}
|