RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
SendZoom.java
1
package
com.osroyale.net.packet.out;
2
3
import
com.osroyale.game.world.entity.mob.player.Player;
4
import
com.osroyale.net.packet.OutgoingPacket;
5
25
26
public
final
class
SendZoom
extends
OutgoingPacket {
27
28
private
final
int
zoom;
29
30
public
SendZoom(
int
zoom) {
31
super(139, 2);
32
this.zoom = zoom;
33
}
34
35
@Override
36
public
boolean
encode(
Player
player) {
37
builder.writeShort(zoom);
38
return
true
;
39
}
40
}
com.osroyale.game.world.entity.mob.player.Player
Definition
Player.java:162