mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-27 08:55:38 +00:00
19 lines
386 B
C#
19 lines
386 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace OpenTK.Platform
|
|||
|
{
|
|||
|
interface INativeWindow : IResizable, IDisposable
|
|||
|
{
|
|||
|
void ProcessEvents();
|
|||
|
|
|||
|
event CreateEvent Create;
|
|||
|
|
|||
|
bool IsIdle { get; }
|
|||
|
bool Quit { get; set; }
|
|||
|
bool Fullscreen { get; set; }
|
|||
|
IGLContext Context { get; }
|
|||
|
}
|
|||
|
}
|