mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
16 lines
407 B
C#
16 lines
407 B
C#
namespace AssetRipper.Core
|
|
{
|
|
public static class BuildInfo
|
|
{
|
|
public const string Name = "AssetRipper";
|
|
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.3.0.2";
|
|
}
|
|
}
|