1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 23:56:05 +02:00

Missing interfaces

Add the missing interfaces these types already support.
This commit is contained in:
Damian Day 2020-03-20 22:06:09 +00:00
parent 9a8beec7d9
commit 176c03832f
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ using System.Globalization;
namespace System
{
struct UInt64 : uint64, IInteger, IUnsigned, IHashable, IOpComparable, IIsNaN, IFormattable
struct UInt64 : uint64, IInteger, IUnsigned, IHashable, IOpComparable, IIsNaN, IFormattable, IOpAddable, IOpSubtractable
{
public const uint64 MaxValue = 0xFFFFFFFFFFFFFFFFUL;
public const uint64 MinValue = 0;