@gwigz/homunculus-core
Version:
A third-party framework for interacting with Linden Lab's virtual world "Second Life"
33 lines (32 loc) • 961 B
TypeScript
/**
* AgentSit Packet
*
* This file is used to help our packet serialization and deserialization
* process, and to create new packets on the fly.
*
* ⚠️ Do not edit this file manually, it is generated by the `codegen` script!
*
* @see {@link http://wiki.secondlife.com/wiki/Message_Layout}
*/
import { UUID } from "../types";
import { type PacketMetadata } from "./packet";
export interface AgentSitData {
agentData?: {
agentId?: string;
sessionId?: string;
};
}
export declare const agentSitMetadata: {
id: number;
name: string;
blocks: {
name: string;
parameters: [string, typeof UUID][];
}[];
};
export declare const agentSit: (data: AgentSitData, reliable?: boolean) => {
data: AgentSitData;
reliable: boolean | undefined;
metadata: PacketMetadata;
};
export declare const createAgentSitDelegate: (config: Omit<import("..").DelegateConfig<AgentSitData>, "metadata">) => void;