You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
534 B
18 lines
534 B
// 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,
|
|
/// <summary>
|
|
/// 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.
|
|
/// <seealso cref="JoinRoomOptions.Flags" />
|
|
/// </summary>
|
|
EnableEcho = 0x01
|
|
}
|
|
}
|