📄 fateclient.java
字号:
/*
* FateClient.java
*
* Copyright (C) 2000 Jason M. Hanley
* Released under the GNU General Public License (GPL)
* See license.txt for additional information.
*
* Created on July 25, 2000, 11:32 PM
*/
package fate;
import fate.client.*;
import fate.messages.*;
import fate.network.*;
import fate.ui.*;
import fate.util.*;
/**
* Client executable.
*
* @author preylude@s3m.com
* @version 0.1.0
*/
public class FateClient extends Object {
public static final String programName = "FateClient 0.1.3";
public static final String ConnectFile = "data/ClientConnect.dat";
/** Creates new FateClient */
public FateClient() {
}
/** Runs the FateClient application */
public static void main(String[] args) {
System.out.println( programName + " initializing..." );
MainFrame mainFrame = new MainFrame( programName );
mainFrame.pack();
SwingUtil.centerWindow( mainFrame );
mainFrame.setVisible(true);
Debug.trace( "FateClient main thread exiting." );
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -