FM/Assets/Scripts/Base/Helper/NetHelper.cs

10 lines
188 B
C#
Raw Normal View History

namespace Base.Helper
{
public static class NetHelper
{
public static float BytesToMB(long bytes)
{
return bytes / (1024f * 1024f);
}
}
}