mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
18 lines
510 B
C#
18 lines
510 B
C#
namespace AssetRipper.Core
|
|
{
|
|
public static class BuildInfo
|
|
{
|
|
public const string Name = "AssetRipper";
|
|
public const string CommonName = Name + "Common";
|
|
public const string ConsoleName = Name + "Console";
|
|
public const string CoreName = Name + "Core";
|
|
public const string GUIName = Name + "GUI";
|
|
public const string LibraryName = Name + "Library";
|
|
|
|
public const string Author = "ds5678";
|
|
public const string CopyRight = "Copyright © 2022";
|
|
|
|
public const string Version = "0.2.0.1";
|
|
}
|
|
}
|