// Carnegie Mellon University
//   Information Networking Institute and
//   School of Computer Science
//
// Master Thesis: A Monitoring Tool for Overlay Network
// By: TungFai Chan and Annie Cheng
//
// File: Coordination.java
// Path: userInterfaces/graph/
// Description: Object storing and representing coordination on the node graph


package userInterfaces.graph;

public class Coordination {

    public int x;
    public int y;

    public Coordination(int x_val, int y_val) {
	x = x_val;
	y = y_val;
    }

}
