summaryrefslogtreecommitdiff
path: root/tutorial/examples/serialize/Colored3DPoint.oj
blob: 54c0db023503344997b321997808814ef75bde93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package examples.serialize;

public class Colored3DPoint
{
    public Color color = new Color((byte) 0, (byte) 0, (byte) 0);
    public int x;
    public int y;
    public int z;
}

/*
public class Colored3DPoint
{
    public Color color = new Color((byte) 0, (byte) 0, (byte) 0);
    private int x;
    private int y;
    private int z;
}
*/