예제 #1
0
    void Start()
    {
        Point_struct point1 = new Point_struct(1, 1);
        Point_struct point2 = point1;

        Debug.Log(point1.GetPoint());
        Debug.Log(point2.GetPoint());
    }
예제 #2
0
    void Start()
    {
        Point_struct point = new Point_struct(1, 1);

        Debug.Log(point.GetPoint());
    }