三国卡牌客户端基础资源仓库
hch
5 天以前 b0cdc211c9232ab09192ea6ac6ed57e64b31fd60
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//--------------------------------------------------------
//    [Author]:           YYL
//    [  Date ]:           #DateTime#
//--------------------------------------------------------
 
using System.Collections.Generic;
using System.IO;
using System.Threading;
using System;
using UnityEngine;
using LitJson;
 
public partial class #ClassName# : ConfigBase<#KEY#, #ClassName#>
{
 
    #Field#
 
    public override #KEY# LoadKey(string _key)
    {
        #KEY# key = GetKey(_key);
        return key;
    }
 
    public override void LoadConfig(string input)
    {
        try {
        string[] tables = input.Split('\t');
        #Read#
        }
        catch (Exception exception)
        {
            Debug.LogError(exception);
        }
    }
}