Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.SetAlwaysRunPacket$AgentDataBlock


  }

  public void setAlwaysRun(boolean value)
  {
    alwaysRun = value;
    SetAlwaysRunPacket run = new SetAlwaysRunPacket();
    run.AgentData.AgentID = Client.self.getAgentID();
    run.AgentData.SessionID = Client.self.getSessionID();
    run.AgentData.AlwaysRun = alwaysRun;
    Client.network.SendPacket(run);
  }
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.SetAlwaysRunPacket$AgentDataBlock

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.