mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-03 03:45:49 +00:00
13 lines
207 B
C#
13 lines
207 B
C#
using System.Diagnostics;
|
|
|
|
namespace Ryujinx.Horizon.Sdk
|
|
{
|
|
static class DebugUtil
|
|
{
|
|
public static void Assert(bool condition)
|
|
{
|
|
Debug.Assert(condition);
|
|
}
|
|
}
|
|
}
|