EntityGadget.java 329 Bytes
Newer Older
Melledy's avatar
Melledy committed
1
2
package emu.grasscutter.game.entity;

Melledy's avatar
Melledy committed
3
4
import emu.grasscutter.game.world.Scene;
import emu.grasscutter.game.world.World;
Melledy's avatar
Melledy committed
5

6
public abstract class EntityGadget extends GameEntity {
Melledy's avatar
Melledy committed
7

8
	public EntityGadget(Scene scene) {
9
		super(scene);
Melledy's avatar
Melledy committed
10
11
12
13
14
15
16
17
18
	}
	
	public abstract int getGadgetId();
	
	@Override
	public void onDeath(int killerId) {
		
	}
}