Package com.mmoscene.h4j.communication

Examples of com.mmoscene.h4j.communication.Response


import com.mmoscene.h4j.H4J;
import com.mmoscene.h4j.communication.Response;

public class SendInstantMessageMessageComposer {
    public static Response compose(int user, String msg) {
        Response response = new Response();

        response.init(H4J.getHeaders().getInt("SendInstantMessageMessageComposer"));
        response.addInt(user);
        response.addString(msg);
        response.addInt(0);

        return response;
    }
View Full Code Here

TOP

Related Classes of com.mmoscene.h4j.communication.Response

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.