Files
BH3/Assets/Scripts/Assembly-CSharp/MoleMole/Config/RenderingDataEntry.cs
2025-08-13 09:26:42 +08:00

17 lines
261 B
C#

namespace MoleMole.Config
{
public class RenderingDataEntry
{
private const string RENDERING_CONFIG_PATH_PREFIX = "Rendering/";
public string name;
public string dataPath;
public string GetDataPath()
{
return "Rendering/" + dataPath;
}
}
}