mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-25 08:22:21 -05: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);
|
|
}
|
|
}
|
|
}
|