You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 15:06:20 +00:00
18 lines
366 B
TypeScript
18 lines
366 B
TypeScript
import { ObjectStateUpdateMessage } from './ObjectStateUpdateMessage';
|
|
|
|
export class ObjectAvatarMutedUpdateMessage extends ObjectStateUpdateMessage
|
|
{
|
|
private _isMuted: boolean;
|
|
|
|
constructor(isMuted: boolean = false)
|
|
{
|
|
super();
|
|
|
|
this._isMuted = isMuted;
|
|
}
|
|
|
|
public get isMuted(): boolean
|
|
{
|
|
return this._isMuted;
|
|
}
|
|
} |