initializedialog.java

来自「Java 3D Game SDK.老外做的.」· Java 代码 · 共 30 行

JAVA
30
字号
/* * InitializeDialog.java */package org.java3dgamesdk.samples.I;import org.java3dgamesdk.core.*;import org.java3dgamesdk.core.util.*;/** * Sample program to initialize the game frame with a dialog. * To close the applciation, please use the ESC key. * * @author  Norbert Nopper */public class InitializeDialog {        public static void main(String[] argv) {        // create the object                GameFrame gameFrame = new GameFrame();                // create the object and pass the game frame to it ...        RenderSelection renderSelection = new RenderSelection(gameFrame);        // ... rest is done by the dialog        renderSelection.show();            }    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?