mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 08:48:44 +00:00
13 lines
210 B
C#
13 lines
210 B
C#
|
using System.Diagnostics;
|
|||
|
|
|||
|
namespace Ryujinx.Horizon.Sdk
|
|||
|
{
|
|||
|
static class DebugUtil
|
|||
|
{
|
|||
|
public static void Assert(bool condition)
|
|||
|
{
|
|||
|
Debug.Assert(condition);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|