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
364 B
TypeScript
18 lines
364 B
TypeScript
import { ObjectStateUpdateMessage } from './ObjectStateUpdateMessage';
|
|
|
|
export class ObjectAvatarSignUpdateMessage extends ObjectStateUpdateMessage
|
|
{
|
|
private _signType: number;
|
|
|
|
constructor(signType: number = 0)
|
|
{
|
|
super();
|
|
|
|
this._signType = signType;
|
|
}
|
|
|
|
public get signType(): number
|
|
{
|
|
return this._signType;
|
|
}
|
|
} |