RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
ArchiveSector.java
1package com.osroyale.fs.cache.archive;
2
3import com.osroyale.fs.cache.FileSystem;
4
5import java.nio.ByteBuffer;
6
41
42public final class ArchiveSector {
43
45 private final ByteBuffer data;
46
48 private final int hash;
49
57 protected ArchiveSector(ByteBuffer data, int hash) {
58 this.data = data;
59 this.hash = hash;
60 }
61
63 public ByteBuffer getData() {
64 return data;
65 }
66
68 public int getHash() {
69 return hash;
70 }
71
72}