diff --git a/docs/坦克大战笔记.docx b/docs/坦克大战笔记.docx index 9526199..caa17a9 100644 Binary files a/docs/坦克大战笔记.docx and b/docs/坦克大战笔记.docx differ diff --git a/src/com/demo/tank/frame/FrameTest.java b/src/com/demo/tank/frame/FrameTest.java deleted file mode 100644 index 1899560..0000000 --- a/src/com/demo/tank/frame/FrameTest.java +++ /dev/null @@ -1,21 +0,0 @@ -package com.demo.tank.frame; - -import java.awt.*; -import java.awt.event.WindowAdapter; -import java.awt.event.WindowEvent; - -public class FrameTest { - public static void main(String[] args) { - Frame frame = new Frame(); - frame.setVisible(true); - frame.setSize(800, 600); - frame.setResizable(false); - frame.setTitle("tank war"); - frame.addWindowListener(new WindowAdapter() { - @Override - public void windowClosing(WindowEvent e) { - System.exit(0); - } - }); - } -}