comparison game/IDMPoint.java @ 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
children 83a79d1698c8
comparison
equal deleted inserted replaced
72:e2b8f0cd0f88 73:8c81a3e73a2b
1 /*
2 * Ristipolku IDM point
3 * (C) Copyright 2011 Matti 'ccr' Hämäläinen <ccr@tnsp.org>
4 */
5 package game;
6
7 public class IDMPoint
8 {
9 public float x, y;
10
11 public IDMPoint(float x, float y)
12 {
13 this.x = x;
14 this.y = y;
15 }
16 }