mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-23 10:35:12 +01:00
Compatibility with 1.10-pre1
This commit is contained in:
commit
5665510f7e
@ -0,0 +1,16 @@
|
||||
package us.myles.ViaVersion.protocols.protocolsnapshotto1_9_3.storage;
|
||||
|
||||
import lombok.*;
|
||||
import us.myles.ViaVersion.api.data.StoredObject;
|
||||
import us.myles.ViaVersion.api.data.UserConnection;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
@ToString
|
||||
public class ResourcePackTracker extends StoredObject {
|
||||
private String lastHash = "";
|
||||
|
||||
public ResourcePackTracker(UserConnection user) {
|
||||
super(user);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user