-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathExcelSettings.cs
More file actions
42 lines (38 loc) · 1.29 KB
/
ExcelSettings.cs
File metadata and controls
42 lines (38 loc) · 1.29 KB
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
36
37
38
39
40
41
42
///////////////////////////////////////////////////////////////////////////////
///
/// ExcelSettings.cs
///
/// (c)2015 Kim, Hyoun Woo
///
///////////////////////////////////////////////////////////////////////////////
using UnityEngine;
using UnityEditor;
using System.Collections;
using System.Collections.Generic;
using System.IO;
namespace UnityQuickSheet
{
/// <summary>
/// A class manages excel setting.
/// </summary>
[CreateAssetMenu(menuName = "QuickSheet/Setting/Excel Setting")]
public class ExcelSettings : SingletonScriptableObject<ExcelSettings>
{
/// <summary>
/// A default path where .txt template files are.
/// </summary>
public string TemplatePath = "QuickSheet/ExcelPlugin/Templates";
/// <summary>
/// A path where generated ScriptableObject derived class and its data class script files are to be put.
/// </summary>
public string RuntimePath = string.Empty;
/// <summary>
/// A path where generated editor script files are to be put.
/// </summary>
public string EditorPath = string.Empty;
/// <summary>
/// record import path for QuickSheetMenu
/// </summary>
internal List<string> _waitImportPath = new List<string>();
}
}