blob: b772d8650bc3bff02dcc7eeb6e0fef1b2f4f54c8 (
plain)
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
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace WK
{
/// <summary>
/// ����Ϸ����صij����������ļ�·����
/// </summary>
public class StaticDefine
{
public const float IntervalLoadFile = 0.1f;
public static string StatsFilePath = "metadata/default_stats.csv";
public static string BuffFilePath = "metadata/default_buffs.csv";
public static string RoninPath = "characters/ronin/ronin.json";
// ������
public static string Scene_Dojo = "Scenes/3_Dojo";
public static string Scene_Stage = "Scenes/4_Stage";
// �ļ��б�
public static string FileList = "metadata/filelist.csv";
}
}
|