view game/IDMPoint.java @ 198:b88440f4431a

Allow no-text (null text) buttons.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 24 Apr 2019 14:53:27 +0300
parents e8eeac403e5f
children
line wrap: on
line source

/*
 * Ristipolku IDM point
 * (C) Copyright 2011 Matti 'ccr' Hämäläinen <ccr@tnsp.org>
 */
package game;

public class IDMPoint
{
    public float x, y;

    public IDMPoint(float x, float y)
    {
        this.x = x;
        this.y = y;
    }

    public IDMPoint(IDMPoint pt)
    {
        this.x = pt.x;
        this.y = pt.y;
    }

    public IDMPoint copy()
    {
        return new IDMPoint(x, y);
    }
}