package uk.ac.open.punchingbag; public class Contact { // Height of bag is public final long time; // Time of the contact with the bag (in millis) public final int x; public final int y; public final int force; // 0 - 100 Contact(long time, int x, int y, int force) { this.time = time; this.x = x; this.y = y; this.force = force; } public String toString() { return "X: " + x + " Y: " + y + " Force: " + force; } }