summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/graph/model/GraphPoint.java
blob: c1c6ccc05e56fce2e1c2b6fafafb41546e6c2df2 (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;
    }
}