export type GameJoinContext = {
JoinSource : Enum.JoinSource,
ItemType : Enum.AvatarItemType?,
AssetId : string?,
OutfitId : string?,
AssetType : Enum.AssetType?
}
export type JoinContext = {
SourceGameId : number?,
SourcePlaceId : number?,
ReferredByPlayerId : number,
Members : {[number]: Player}?,
TeleportData : any?,
LaunchData : string,
GameJoinContext : GameJoinContext
}
