summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ResUserinfo.java
blob: ed981b4f72a61416ec23f1dcec4d7b7c678a3c54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.macaroon.piztor;


//--------------------------------------//
//			Respond to User Info	    //
//--------------------------------------//

public class ResUserinfo extends Res{
	int uid;		//userid
	int gid;		//groupid
	int sex;		//type 0 for female,type 1 for male
	
	
	ResUserinfo(int status,int u,int g,int s){
		super(3,status);	//for type 3
		uid = u;
		gid = g;
		sex =s;
	}
}