summaryrefslogtreecommitdiff
path: root/client/.metadata/.plugins/org.eclipse.core.resources/.history/5/c09802f4810d00131719b896d543f08c
blob: c1827b464ed0d566c04dd5729c4ad226d1153db7 (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
24
25
26
27
28
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;
	
	static void init() {
		mp = new HashMap<Integer, Group>();
	}
	
}