summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/graph/model/GraphPoint.java
blob: f2aa16555f4bb6a0a47826703469fc99ef8bf211 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
    }
}