You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-20 07:26:18 +00:00
18 lines
360 B
TypeScript
18 lines
360 B
TypeScript
import { ObjectStateUpdateMessage } from './ObjectStateUpdateMessage';
|
|
|
|
export class ObjectAvatarPetGestureUpdateMessage extends ObjectStateUpdateMessage
|
|
{
|
|
private _gesture: string;
|
|
|
|
constructor(gesture: string)
|
|
{
|
|
super();
|
|
|
|
this._gesture = gesture;
|
|
}
|
|
|
|
public get gesture(): string
|
|
{
|
|
return this._gesture;
|
|
}
|
|
} |