Exemplo n.º 1
0
        private static void NotifyNative(string operation, string param)
        {
            Debug.Log("[UNITY] Performing operation: " + operation + " with params: " + param);
            IPerformer _performer = GetPerformer();

            if (_performer != null)
            {
                _performer.NotifyNative(operation, param);
            }
        }