summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/graph/model/GraphPoint.java
diff options
context:
space:
mode:
Diffstat (limited to 'source/com/c2kernel/graph/model/GraphPoint.java')
-rwxr-xr-xsource/com/c2kernel/graph/model/GraphPoint.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/source/com/c2kernel/graph/model/GraphPoint.java b/source/com/c2kernel/graph/model/GraphPoint.java
new file mode 100755
index 0000000..c1c6ccc
--- /dev/null
+++ b/source/com/c2kernel/graph/model/GraphPoint.java
@@ -0,0 +1,18 @@
+package com.c2kernel.graph.model;
+
+import java.io.Serializable;
+
+public class GraphPoint implements Serializable{
+
+ public int x;
+ public int y;
+
+ public GraphPoint() {
+ x=0; y=0;
+ }
+
+ public GraphPoint(int x, int y) {
+ this.x = x;
+ this.y = y;
+ }
+}