16 lines
		
	
	
	
		
			322 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			322 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.server.network;
 | |
| 
 | |
| import java.util.function.Consumer;
 | |
| import net.minecraft.network.protocol.Packet;
 | |
| 
 | |
| public interface ConfigurationTask {
 | |
| 	void start(Consumer<Packet<?>> task);
 | |
| 
 | |
| 	ConfigurationTask.Type type();
 | |
| 
 | |
| 	public record Type(String id) {
 | |
| 		public String toString() {
 | |
| 			return this.id;
 | |
| 		}
 | |
| 	}
 | |
| }
 |