mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 05:55:27 +00:00
bb2b3f8eae
Removed T02_Resizable_Window.cs and added T02_Vertex_Array_Cube.cs Added Shapes/Cube.cs to Examples.
34 lines
912 B
C#
34 lines
912 B
C#
#region --- License ---
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
* See license.txt for license info
|
|
*/
|
|
#endregion
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Platform
|
|
{
|
|
interface IGameWindow : INativeGLWindow
|
|
{
|
|
void Run();
|
|
|
|
void OnRenderFrame(EventArgs e);
|
|
void OnUpdateFrame(UpdateFrameEventArgs e);
|
|
void OnLoad(EventArgs e);
|
|
void Exit();
|
|
|
|
event UpdateFrameEvent UpdateFrame;
|
|
event RenderFrameEvent RenderFrame;
|
|
event LoadEvent Load;
|
|
|
|
bool IsExiting { get; }
|
|
IList<OpenTK.Input.Keyboard> Keyboard { get; }
|
|
}
|
|
|
|
public delegate void UpdateFrameEvent(object sender, UpdateFrameEventArgs e);
|
|
public delegate void RenderFrameEvent(object sender, EventArgs e);
|
|
public delegate void LoadEvent(object sender, EventArgs e);
|
|
}
|