From b105e5fcebca5f4345b681cdae51ae77ac47a06c Mon Sep 17 00:00:00 2001 From: Ian Arnold Date: Wed, 10 Feb 2021 20:48:40 -0500 Subject: [PATCH 1/4] made square wide --- .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. From c5150184b3431fd58c36bbcea5db2be79e7a08ca Mon Sep 17 00:00:00 2001 From: Ian Arnold Date: Thu, 11 Feb 2021 22:34:08 -0500 Subject: [PATCH 2/4] made the square wide again --- MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java b/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java index ce40170..c8272ba 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(100.0); + square.setWidth(150.0); square.setHeight(40.0); model.setSquare(square); From b254012c26de96667e44a5c953f586446697ab8d Mon Sep 17 00:00:00 2001 From: Ian Arnold Date: Thu, 11 Feb 2021 22:39:48 -0500 Subject: [PATCH 3/4] made wide --- MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java b/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java index c8272ba..4ea10b6 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(150.0); + square.setWidth(170.0); square.setHeight(40.0); model.setSquare(square); From 3242f054230997031a5906e3a5c35384a6748a51 Mon Sep 17 00:00:00 2001 From: Ian Arnold Date: Thu, 11 Feb 2021 22:41:27 -0500 Subject: [PATCH 4/4] wider --- MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java b/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java index 4ea10b6..7267207 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(170.0); + square.setWidth(160.0); square.setHeight(40.0); model.setSquare(square);