changeset 73:8c81a3e73a2b dev-0_5

Added custom point type for IDM widgets.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 02 Mar 2011 20:14:16 +0200
parents e2b8f0cd0f88
children b7adeae80363
files game/IDMPoint.java
diffstat 1 files changed, 16 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /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 <ccr@tnsp.org>
+ */
+package game;
+
+public class IDMPoint
+{
+    public float x, y;
+    
+    public IDMPoint(float x, float y)
+    {
+        this.x = x;
+        this.y = y;
+    }
+}