mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
10 lines
336 B
C#
10 lines
336 B
C#
namespace AssetRipper.GUI.SourceGenerator;
|
|
|
|
public static class Paths
|
|
{
|
|
public const string RepositoryPath = SourcePath + "../";
|
|
public const string SourcePath = "../../../../";
|
|
public const string LocalizationsPath = RepositoryPath + "Localizations/";
|
|
public const string WebProjectPath = SourcePath + "AssetRipper.GUI.Web/";
|
|
}
|