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); }
static InAppPurchase() { NoAds = NameToEvent("NoAds"); }