Skip to content

Commit

Permalink
正式名启用
Browse files Browse the repository at this point in the history
  • Loading branch information
ShellBin committed Jul 5, 2018
1 parent cabbc0a commit 0860547
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# SimpleNative-Danmaku
# Micro-Danmaku
一个基于 Java 的弹幕射击游戏。
2 changes: 2 additions & 0 deletions bin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/main/
/model/
2 changes: 1 addition & 1 deletion src/main/Game.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class Game{
static JFrame jf;
public static void main(String[] args){
jf=new JFrame();
jf.setTitle("SimpleNative Danmaku");
jf.setTitle("Micro Danmaku");
jf.setDefaultCloseOperation(3);
jf.setResizable(false);
jf.setBounds((int)(Toolkit.getDefaultToolkit().getScreenSize().getWidth()-640)/2,(int)(Toolkit.getDefaultToolkit().getScreenSize().getHeight()-640)/2,500,500);
Expand Down
2 changes: 1 addition & 1 deletion src/model/Title.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public void drawTitle(Graphics g) { //游戏开始界面
g.setColor(Color.white);
count++;
g.setFont(titleFont);
g.drawString("SimpleNative Danmaku",130,150);
g.drawString("Micro Danmaku",170,150);
g.drawString("Press SPACE",180,350);

}
Expand Down

0 comments on commit 0860547

Please sign in to comment.