mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-26 20:33:18 +00:00
d13488f517
Adds bigendian float/double logic
15 lines
379 B
C#
15 lines
379 B
C#
#if !NET6
|
|
using System.Diagnostics;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace System.Runtime.CompilerServices;
|
|
|
|
/// <summary>
|
|
/// Reserved to be used by the compiler for tracking metadata.
|
|
/// This class should not be used by developers in source code.
|
|
/// </summary>
|
|
[ExcludeFromCodeCoverage, DebuggerNonUserCode]
|
|
internal static class IsExternalInit
|
|
{
|
|
}
|
|
#endif
|