-
Notifications
You must be signed in to change notification settings - Fork 0
/
Invader.java
43 lines (37 loc) · 1.25 KB
/
Invader.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Container;
import java.awt.Label;
import javax.swing.JFrame;
/**
* インベーダーゲーム本体
*
* @author anonymous
*
*/
public class Invader extends JFrame {
// コンストラクタ
public Invader() {
// タイトルを設定
setTitle("インベーダー2016");
// サイズ変更不可
setResizable(false);
// マネージャーを作成
Manager manager = new Manager();
// メインパネルを作成
MainPanel mainPanel = new MainPanel(manager);
// サイドパネルの作成と設定
SidePanel sidePanel = new SidePanel(manager);
//フレームを作成してパネルを追加
Container contentPane = this.getContentPane();
contentPane.add(mainPanel, BorderLayout.WEST);
contentPane.add(sidePanel, BorderLayout.EAST);
// パネルサイズに合わせてフレームサイズを自動設定
this.pack();
}
public static void main(String[] args) {
Invader frame = new Invader();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}