DebugScreenDisplayer.java
net.minecraft.client.gui.components.debug.DebugScreenDisplayer
信息
- 全限定名:net.minecraft.client.gui.components.debug.DebugScreenDisplayer
- 类型:public interface
- 包:net.minecraft.client.gui.components.debug
- 源码路径:src/main/java/net/minecraft/client/gui/components/debug/DebugScreenDisplayer.java
- 起始行号:L9
- 职责:
TODO
字段/常量
- 无
内部类/嵌套类型
- 无
构造器
- 无
方法
下面的方法块按源码顺序生成。
void addPriorityLine(String line) @ L10
- 方法名:addPriorityLine
- 源码定位:L10
- 返回类型:void
- 修饰符:package-private
参数:
- line: String
说明:
TODO
void addLine(String line) @ L12
- 方法名:addLine
- 源码定位:L12
- 返回类型:void
- 修饰符:package-private
参数:
- line: String
说明:
TODO
void addToGroup(Identifier group, Collection<String> lines) @ L14
- 方法名:addToGroup
- 源码定位:L14
- 返回类型:void
- 修饰符:package-private
参数:
- group: Identifier
- lines: Collection
说明:
TODO
void addToGroup(Identifier group, String lines) @ L16
- 方法名:addToGroup
- 源码定位:L16
- 返回类型:void
- 修饰符:package-private
参数:
- group: Identifier
- lines: String
说明:
TODO
代码
@OnlyIn(Dist.CLIENT)
public interface DebugScreenDisplayer {
void addPriorityLine(String line);
void addLine(String line);
void addToGroup(final Identifier group, Collection<String> lines);
void addToGroup(final Identifier group, String lines);
}引用的其他类
- Identifier
- 引用位置:
参数
- 引用位置: