13 lines
		
	
	
	
		
			437 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			437 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.network.chat.contents;
 | |
| 
 | |
| import java.util.function.Function;
 | |
| import java.util.function.Supplier;
 | |
| import net.minecraft.network.chat.Component;
 | |
| 
 | |
| public class KeybindResolver {
 | |
| 	static Function<String, Supplier<Component>> keyResolver = string -> () -> Component.literal(string);
 | |
| 
 | |
| 	public static void setKeyResolver(Function<String, Supplier<Component>> keyResolver) {
 | |
| 		KeybindResolver.keyResolver = keyResolver;
 | |
| 	}
 | |
| }
 |