⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dungeonsanddragons.java

📁 龙与地下城游戏(小型)的设计与实现。主要是随机产生地牢
💻 JAVA
字号:
package dungeonsanddragons.game;import javax.swing.SwingUtilities;import javax.swing.UIManager;/** * Main class to run the game * @author Sandra Nilsson */public class DungeonsAndDragons {    public static void main(String[] args) {        try {            // Set System L&F            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());        } catch (Exception e) {        }        //Creates the MemoryFrame and let it run asyncroniosly to the event dispatch thread        SwingUtilities.invokeLater(new Runnable() {            public void run() {                new GameFrame("DA5180 Dungeons and Dragons").setVisible(true);            }        });    }}

⌨️ 快捷键说明

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