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
382 B
TypeScript
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;
|
|
}
|
|
} |