mirror of
https://github.com/imperialsushi/gutterball-3.git
synced 2025-06-15 05:07:42 +00:00

Moving cam replay. Fixed the bugs. New Version 1.42 Moving cam replay. Fixed the bugs. New Version 1.42 Moving cam replay, Fixed the bugs.
15 lines
No EOL
418 B
C#
15 lines
No EOL
418 B
C#
namespace Semver
|
|
{
|
|
internal static class SemVersionExtension
|
|
{
|
|
public static string VersionOnly(this SemVersion version)
|
|
{
|
|
return "" + version.Major + "." + version.Minor + "." + version.Patch;
|
|
}
|
|
|
|
public static string ShortVersion(this SemVersion version)
|
|
{
|
|
return version.Major + "." + version.Minor;
|
|
}
|
|
}
|
|
} |