1
0
mirror of https://github.com/GreemDev/Ryujinx.git synced 2025-03-02 08:21:24 +01:00

18 lines
458 B
C#
Raw Normal View History

2020-01-01 12:39:09 -03:00
using System;
namespace Ryujinx.Graphics.Shader.Translation
{
public struct TranslatorCallbacks
{
internal Func<QueryInfoName, int, int> QueryInfo { get; }
internal Action<string> PrintLog { get; }
public TranslatorCallbacks(Func<QueryInfoName, int, int> queryInfoCallback, Action<string> printLogCallback)
{
QueryInfo = queryInfoCallback;
PrintLog = printLogCallback;
}
}
}