mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
12 lines
207 B
C#
12 lines
207 B
C#
using System.Diagnostics;
|
|
|
|
namespace Ryujinx.Horizon.Sdk
|
|
{
|
|
static class DebugUtil
|
|
{
|
|
public static void Assert(bool condition)
|
|
{
|
|
Debug.Assert(condition);
|
|
}
|
|
}
|
|
}
|