mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2025-02-22 20:32:36 +01: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;
|
||
|
}
|
||
|
}
|