public static NetworkResponse Parse(MemoryStream dataStream)
    {
        ResponseShopAction response = new ResponseShopAction();

        return response;
    }
    public static NetworkResponse Parse(MemoryStream dataStream)
    {
        ResponseShopAction response = new ResponseShopAction();

        return(response);
    }
Esempio n. 3
0
    /*public RequestShop RequestShop(short type) {
     *      RequestShop request = new RequestShop();
     *      request.Send(type);
     *
     *      return request;
     * }*/

    /*public void ResponseShop(NetworkResponse response) {
     *      ResponseShopresponse args = response as ResponseShopresponse;
     *
     *      Initialize(args.config, args.speciesList);
     * }*/
    public void ProcessShopAction(NetworkResponse response)
    {
        ResponseShopAction args = response as ResponseShopAction;
        //things to do after shop confirmation
    }
 public void ResponseShopAction(NetworkResponse response)
 {
     ResponseShopAction args = response as ResponseShopAction;
 }