RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
SendCameraReset.java
1package com.osroyale.net.packet.out;
2
3import com.osroyale.game.world.entity.mob.player.Player;
4import com.osroyale.net.packet.OutgoingPacket;
5
30
31public class SendCameraReset extends OutgoingPacket {
32
33 public SendCameraReset() {
34 super(107, 0);
35 }
36
37 @Override
38 public boolean encode(Player player) {
39 return true;
40 }
41
42}