コード例 #1
0
        public static void AddResourceEvent(
            GAResourceFlowType flowType,
            string currency,
            float amount,
            string itemType,
            string itemId,
            IDictionary <string, object> fields)
        {
            string jsonString = GA_Wrapper.DictionaryToJsonString(fields);

            GA_Wrapper.addResourceEvent((int)flowType, currency, amount, itemType, itemId, jsonString);
        }
コード例 #2
0
 // Token: 0x060001EF RID: 495 RVA: 0x0000D1A5 File Offset: 0x0000B5A5
 public static void AddResourceEvent(GAResourceFlowType flowType, string currency, float amount, string itemType, string itemId)
 {
     GA_Wrapper.addResourceEvent((int)flowType, currency, amount, itemType, itemId);
 }