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