summaryrefslogtreecommitdiffstats
path: root/DataStructure/Weight.java
diff options
context:
space:
mode:
Diffstat (limited to 'DataStructure/Weight.java')
-rw-r--r--DataStructure/Weight.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/DataStructure/Weight.java b/DataStructure/Weight.java
new file mode 100644
index 0000000..a22ab9f
--- /dev/null
+++ b/DataStructure/Weight.java
@@ -0,0 +1,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() {
+
+ }
+}