15 lines
305 B
C#
15 lines
305 B
C#
namespace Photon.Voice.Unity
|
|
{
|
|
using ExitGames.Client.Photon;
|
|
|
|
public interface ILoggable
|
|
{
|
|
DebugLevel LogLevel { get; set; }
|
|
VoiceLogger Logger { get; }
|
|
}
|
|
|
|
public interface ILoggableDependent : ILoggable
|
|
{
|
|
bool IgnoreGlobalLogLevel { get; set; }
|
|
}
|
|
} |