ICounterEvent.cs 172 B

1234567891011
  1. using System;
  2. namespace Ryujinx.Graphics.GAL
  3. {
  4. public interface ICounterEvent : IDisposable
  5. {
  6. bool Invalid { get; set; }
  7. void Flush();
  8. }
  9. }