From e6bb940add91cf4e7e05b6f6fa06e9cc57467aa5 Mon Sep 17 00:00:00 2001 From: Ian Arnold Date: Wed, 10 Feb 2021 20:48:40 -0500 Subject: [PATCH] made square fat --- .classpath | 6 ++++++ .gitignore | 1 + .project | 17 +++++++++++++++++ .../ycp/cs320/movethesquare/ui/GameView.java | 2 +- README.md | 6 ------ 5 files changed, 25 insertions(+), 7 deletions(-) create mode 100644 .classpath create mode 100644 .gitignore create mode 100644 .project delete mode 100644 README.md diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..8fd17d8 --- /dev/null +++ b/.classpath @@ -0,0 +1,6 @@ + + + + + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ae3c172 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/bin/ diff --git a/.project b/.project new file mode 100644 index 0000000..78f6692 --- /dev/null +++ b/.project @@ -0,0 +1,17 @@ + + + MoveTheSquare + + + + + + org.eclipse.jdt.core.javabuilder + + + + + + org.eclipse.jdt.core.javanature + + diff --git a/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java b/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java index 674d86b..ce40170 100644 --- a/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java +++ b/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java @@ -84,7 +84,7 @@ public void run() { Square square = new Square(); square.setX(300.0); square.setY(220.0); - square.setWidth(40.0); + square.setWidth(100.0); square.setHeight(40.0); model.setSquare(square); diff --git a/README.md b/README.md deleted file mode 100644 index ac8163e..0000000 --- a/README.md +++ /dev/null @@ -1,6 +0,0 @@ -MoveTheSquare -============= - -The game engine for the next great indie game. - -Released as open source under the MIT license.