mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-02 09:47:44 +02:00
10 lines
207 B
C#
10 lines
207 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Synchronization
|
|
{
|
|
public class SyncpointWaiterHandle
|
|
{
|
|
internal uint Threshold;
|
|
internal Action<SyncpointWaiterHandle> Callback;
|
|
}
|
|
}
|