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


//--------------------------------------//
//	         Respond to login			//
//--------------------------------------//

public class ResLogin extends Res{
	int t;	//user token
	
	ResLogin(int token,int status){
		super(0,status);	//for type 0
		t = token;
	}
}