1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Core - More code style

This commit is contained in:
Robert 2022-09-03 10:38:08 +02:00
parent 3994b49f08
commit 3836fae37a

View File

@ -162,22 +162,22 @@ public readonly struct Numeric : IComparable<Numeric>, IConvertible
public static implicit operator Numeric(double d)
{
return new(d);
return new Numeric(d);
}
public static implicit operator Numeric(float f)
{
return new(f);
return new Numeric(f);
}
public static implicit operator Numeric(int i)
{
return new(i);
return new Numeric(i);
}
public static implicit operator Numeric(byte b)
{
return new(b);
return new Numeric(b);
}
public static implicit operator long(Numeric p)