示例#1
0
        public static InAppPurchase NameToEvent(string name)
        {
            InAppPurchase inAppPurchase;

            if (s_nameToEvent.TryGetValue(name, out inAppPurchase))
            {
                return(inAppPurchase);
            }

            inAppPurchase = new InAppPurchase(name);

            s_nameToEvent[name] = inAppPurchase;

            return(inAppPurchase);
        }
示例#2
0
 static InAppPurchase()
 {
     NoAds = NameToEvent("NoAds");
 }