blob: 727eaa30f84c257a9ffdcdf1a86adf33cee9f210 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package com.macaroon.piztor;
//--------------------------------------//
// Respond to update location //
//--------------------------------------//
public class ResUpdate extends Res{
ResUpdate(int status){
super(2,status); //for type 2
}
}
|