summaryrefslogtreecommitdiff
path: root/client/.metadata/.plugins/org.eclipse.core.resources/.history/41/c042e3c3810d00131719b896d543f08c
blob: c3fe034c8f0203dcc4d046b0e9b1ff5fa106a3f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.macaroon.piztor;

import java.util.HashMap;
import java.util.Vector;

public class Infomation {
	static String ip = "69.85.86.42";
	static int port = 9990;
	static int token = -1;
	static int myId = -1;
	static int myGroup = -1;
	class UserInfo {
		int id;
		double lat, lot;
	}

	class Group {
		int id;
		Vector<UserInfo> v;
	}
	
	static HashMap<Integer, Group> mp;
}