summaryrefslogtreecommitdiffstats
path: root/DataStructure/Weight.java
blob: a22ab9f07d01b825628b94e37f904e35b0d9eed9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package DataStructure;

public class Weight {
	int x;
	int y;
	SingleBTS bts;
	double weight;
	double area;

	public Weight(int x, int y, double weight) {
		this.x = x;
		this.y = y;
		this.weight = weight;
	}

	public Weight() {

	}
}