mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-02-03 13:32:56 -06:00
11 lines
210 B
C#
11 lines
210 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Synchronization
|
|
{
|
|
public class SyncpointWaiterHandle
|
|
{
|
|
internal uint Threshold;
|
|
internal Action<SyncpointWaiterHandle> Callback;
|
|
}
|
|
}
|