# HG changeset patch # User Matti Hamalainen # Date 1299089656 -7200 # Node ID 8c81a3e73a2b9ca643349f48ace3543f080c8023 # Parent e2b8f0cd0f884793a48033679bd537799a3bb3dd Added custom point type for IDM widgets. diff -r e2b8f0cd0f88 -r 8c81a3e73a2b game/IDMPoint.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/game/IDMPoint.java Wed Mar 02 20:14:16 2011 +0200 @@ -0,0 +1,16 @@ +/* + * Ristipolku IDM point + * (C) Copyright 2011 Matti 'ccr' Hämäläinen + */ +package game; + +public class IDMPoint +{ + public float x, y; + + public IDMPoint(float x, float y) + { + this.x = x; + this.y = y; + } +}