Files
Nitro_Render_V3/packages/room/src/messages/ObjectAvatarPlayingGameUpdateMessage.ts
T
2024-04-03 09:27:56 +02:00

18 lines
382 B
TypeScript

import { ObjectStateUpdateMessage } from './ObjectStateUpdateMessage';
export class ObjectAvatarPlayingGameUpdateMessage extends ObjectStateUpdateMessage
{
private _isPlayingGame: boolean;
constructor(flag: boolean)
{
super();
this._isPlayingGame = flag;
}
public get isPlayingGame(): boolean
{
return this._isPlayingGame;
}
}