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

import java.util.Vector;

//--------------------------------------//
//			  Location Info			    //
//--------------------------------------//

public class ResLocation extends Res{
	Vector<Rlocation> l;	//vector for location info
	int n;					//number of location info
	
	ResLocation(int num,Vector<Rlocation> locationvec){
		super(3,255);	//for type 3
		l = locationvec;
		n = num;
	}
}