summaryrefslogtreecommitdiff
path: root/client/.metadata/.plugins/org.eclipse.core.resources/.history/54/105bdc86800d00131719b896d543f08c
blob: 02ab321829c6b2582998b7383a0918601bcc7ed4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.macaroon.piztor;

import java.util.Vector;

public class Infomation {
	static String ip = "69.85.86.42";
	static int port = 9990;
	static int token = -1;
	
	static class UserInfo {
		int id;
		double lat, lot;
	}
	
	static class Group {
		int id;
		Vector<UserInfo> v;
	}
}