aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Sdk/DebugUtil.cs
blob: a88c99a76ecc5fb12b85f0225b22c43b54ee7b35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Diagnostics;

namespace Ryujinx.Horizon.Sdk
{
    static class DebugUtil
    {
        public static void Assert(bool condition)
        {
            Debug.Assert(condition);
        }
    }
}