diff options
Diffstat (limited to 'src/StardewModdingAPI/ISemanticVersion.cs')
-rw-r--r-- | src/StardewModdingAPI/ISemanticVersion.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/StardewModdingAPI/ISemanticVersion.cs b/src/StardewModdingAPI/ISemanticVersion.cs index f50752fe..3b9bdb44 100644 --- a/src/StardewModdingAPI/ISemanticVersion.cs +++ b/src/StardewModdingAPI/ISemanticVersion.cs @@ -31,5 +31,8 @@ namespace StardewModdingAPI /// <summary>Get whether this version is newer than the specified version.</summary> /// <param name="other">The version to compare with this instance.</param> bool IsNewerThan(ISemanticVersion other); + + /// <summary>Get a string representation of the version.</summary> + string ToString(); } }
\ No newline at end of file |