namespace UnityEngine.ProBuilder
{
///
/// Information about this build of ProBuilder.
///
static class Version
{
internal static readonly SemVer currentInfo = new SemVer("4.0.5", "2019/05/08");
///
/// Get the current version.
///
/// The current version string in semantic version format.
public static string current
{
get { return currentInfo.ToString(); }
}
}
}