|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[System.Serializable]
|
|
public class PPTConfig
|
|
{
|
|
public List<PPTFile> pptFiles;
|
|
}
|
|
|
|
[System.Serializable]
|
|
public class PPTFile
|
|
{
|
|
public string button;
|
|
public string fileName;
|
|
}
|