You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
388 B
12 lines
388 B
/**
|
|
* 控制台视图类(MVC-视图层)
|
|
*/
|
|
public class ConsoleView {
|
|
public void render() {
|
|
// 应用暗色主题常量
|
|
System.out.println("=== 暗色主题模式 ===");
|
|
System.out.println("背景色:" + ViewConstants.BACKGROUND_COLOR);
|
|
System.out.println("文本色:" + ViewConstants.TEXT_COLOR);
|
|
// 其他视图渲染逻辑
|
|
}
|
|
}
|