mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 16:05:31 +00:00
672a82983a
Updated the ExampleLauncher to not process exceptions. Updated the IExample interface to contain the Launch method. Updated examples and the ExampleLauncher according to the IExample interface. Synced with gl3 branch.
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; }
|
|
}
|
|
}
|