21 lines
543 B
C#
21 lines
543 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Test : MonoBehaviour
|
|
{
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
var data = new SaveExcelData();
|
|
data.AddInfoData("1", "aaa", "tuanxing1", "wenhua1");
|
|
data.AddInfoData("2", "bbb", "tuanxing2", "wenhua2");
|
|
data.AddInfoData("3", "ccc", "tuanxing3", "wenhua3");
|
|
ExcelManager.Instance.SaveAndExp(data);
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
}
|
|
} |