aboutsummaryrefslogtreecommitdiff
path: root/PunchingBag/src/Contact.java
diff options
context:
space:
mode:
authorChristopher Baines <cbaines8@gmail.com>2011-09-14 10:42:54 +0100
committerChristopher Baines <cbaines8@gmail.com>2011-09-14 10:42:54 +0100
commitae8432ffe5cea8421b04068d0fe62d8e15175505 (patch)
tree118bb4c9ed8270fdf194b92ae216e1c85c0c4f6f /PunchingBag/src/Contact.java
parentf4b220237f3e7d16618c9e95ebb03a9fb6991aa2 (diff)
downloadpunchingbag-ae8432ffe5cea8421b04068d0fe62d8e15175505.tar
punchingbag-ae8432ffe5cea8421b04068d0fe62d8e15175505.tar.gz
New package management, needs more work, not enough is public. Split
programs from the gui, these are included as examples.
Diffstat (limited to 'PunchingBag/src/Contact.java')
-rw-r--r--PunchingBag/src/Contact.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/PunchingBag/src/Contact.java b/PunchingBag/src/Contact.java
deleted file mode 100644
index 8e8970b..0000000
--- a/PunchingBag/src/Contact.java
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
- class Contact {
- // Height of bag is
-
- final long time; // Time of the contact with the bag (in millis)
- final int x;
- final int y;
- final int strength; // 0 - 100
-
- Contact(long time, int x, int y, int strength) {
- this.time = time;
- this.x = x;
- this.y = y;
- this.strength = strength;
- }
-
-
- } \ No newline at end of file