view game/IDMPoint.java @ 74:b7adeae80363

Added tag devel-1 for changeset 8c81a3e73a2b
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 02 Mar 2011 23:48:17 +0200
parents 8c81a3e73a2b
children 83a79d1698c8
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;
    }
}