1
0
Fork 0
mirror of https://github.com/Ryujinx/Opentk.git synced 2025-04-30 11:36:28 +00:00
Opentk/Source/Framework/FrameworkImplementation.cs
the_fiddler 17b411e2ec Directory structure updates (more to come)
Updated OpenTK.OpenGL.Bind (0.7.7)

Split GL enums, core and extensions to different files. Extension support is missing for the time being.

Updated the framework implementation and namespace.
2006-10-15 20:28:57 +00:00

20 lines
551 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
namespace OpenTK.Frameworks
{
public partial class Framework
{
internal abstract class FrameworkImplementation
{
abstract public void OnHandleCreated(object sender, EventArgs args);
abstract public bool IsIdle();
abstract public void Setup();
//abstract public void CloseWindow();
abstract public bool ToggleFullscreen(bool fullscreen);
}
}
}