-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd45fcd
commit 016dd7c
Showing
12 changed files
with
81 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
wrapped-mc/src/main/java/net/minecraft/server/level/DistanceManager.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package net.minecraft.server.level; | ||
|
||
import net.minecraft.util.SortedArraySet; | ||
|
||
public abstract class DistanceManager { | ||
|
||
public SortedArraySet<Ticket<?>> getTickets(long l2) { | ||
throw new RuntimeException(); | ||
} | ||
|
||
public void removeTicket(long l, Ticket<?> ticket) { | ||
throw new RuntimeException(); | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
wrapped-mc/src/main/java/net/minecraft/server/level/ServerChunkCache.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
wrapped-mc/src/main/java/net/minecraft/server/level/Ticket.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package net.minecraft.server.level; | ||
|
||
public class Ticket<T> implements Comparable<Ticket<T>> { | ||
|
||
@Override | ||
public int compareTo(Ticket<T> o) { | ||
throw new RuntimeException(); | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
wrapped-mc/src/main/java/net/minecraft/util/SortedArraySet.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package net.minecraft.util; | ||
|
||
import java.util.AbstractSet; | ||
import java.util.Iterator; | ||
|
||
public class SortedArraySet<T> extends AbstractSet<T> { | ||
|
||
@Override | ||
public Iterator<T> iterator() { | ||
throw new RuntimeException(); | ||
} | ||
|
||
@Override | ||
public int size() { | ||
throw new RuntimeException(); | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
wrapped-mc/src/main/java/net/minecraft/world/level/ChunkPos.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package net.minecraft.world.level; | ||
|
||
public class ChunkPos { | ||
|
||
public long toLong() { | ||
throw new RuntimeException(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters