mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-05-09 07:29:31 +00:00
10 lines
210 B
C#
10 lines
210 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Synchronization
|
|
{
|
|
public class SyncpointWaiterHandle
|
|
{
|
|
internal uint Threshold;
|
|
internal Action<SyncpointWaiterHandle> Callback;
|
|
}
|
|
}
|