RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
SendWalkableInterface.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
class
SendWalkableInterface
extends
OutgoingPacket {
27
28
private
final
int
id;
29
30
public
SendWalkableInterface(
int
id
) {
31
super(208, 2);
32
this.id = id;
33
}
34
35
@Override
36
public
boolean
encode(
Player
player) {
37
builder.writeShort(
id
);
38
return
true
;
39
}
40
41
}
com.osroyale.game.world.entity.mob.player.Player
Definition
Player.java:162