summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/Rlocation.java
blob: 142cc9bc4fd627d14b0d5dc1160eea21415daf9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.macaroon.piztor;

class Rlocation{
	int i;		//id
	double lat;	//latitude
	double lot; //longitude
	
	Rlocation(int id,double latitude,double longitude){
		i = id;
		lat = latitude;
		lot = longitude;
	}
}