AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Plugins/StoicGooseUnity/StoicGoose.Common/Utilities/Bcd.cs

9 lines
240 B
C#

namespace StoicGoose.Common.Utilities
{
public static class Bcd
{
public static int DecimalToBcd(int value) => ((value / 10) << 4) + (value % 10);
public static int BcdToDecimal(int value) => ((value >> 4) * 10) + value % 16;
}
}