// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.RTC { [System.Flags] public enum JoinRoomFlags : uint { None = 0x0, /// /// Enables echo mode. /// This can be used during development to have the server send your voice back to you so you don't need 2 clients to test /// if voice is being sent and received. /// /// EnableEcho = 0x01 } }