Files
LimboService/src/main/java/com/loohp/limbo/player/Unsafe.java
T
2021-04-06 21:14:05 +08:00

32 lines
473 B
Java

package com.loohp.limbo.player;
import com.loohp.limbo.location.Location;
import com.loohp.limbo.utils.GameMode;
@Deprecated
public class Unsafe {
private Unsafe() {}
@Deprecated
public void a(Player a, GameMode b) {
a.gamemode = b;
}
@Deprecated
public void a(Player a, int b) {
a.setEntityId(b);
}
@Deprecated
public void a(Player a, Location b) {
a.setLocation(b);
}
@Deprecated
public void a(Player a, byte b) {
a.selectedSlot = b;
}
}