blob: 3f62e8c1f8dccc1ab18e5a886ae155f5a425e8dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace WK
{
public class StaticDefine
{
public static string StatsFilePath = "metadata/default_stats.csv";
public static string BuffFilePath = "metadata/default_buffs.csv";
public static string RoninPath = "characters/ronin/ronin.json";
}
}
|