bloxstrap/Bloxstrap/Enums/VersionComparison.cs
pizzaboxer 776dbc4097
Draft: new installer system
the beginning of a long arduous cleanup of two years of debt
2024-08-10 13:08:04 +01:00

10 lines
138 B
C#

namespace Bloxstrap.Enums
{
enum VersionComparison
{
LessThan = -1,
Equal = 0,
GreaterThan = 1
}
}