GameFramework.SwitchDebugHandler.Execute C# (CSharp) Method

Execute() static private method

static private Execute ( object msg, User user ) : void
msg object
user User
return void
        internal static void Execute(object msg, User user)
        {
            Msg_CR_SwitchDebug switchDebug = msg as Msg_CR_SwitchDebug;
            if (switchDebug == null)
                return;
            user.IsDebug = switchDebug.is_debug;
        }
SwitchDebugHandler