Opentk/Source/Framework/FrameworkImplementation.cs

22 lines
638 B
C#
Raw Normal View History

#region License
/* Copyright (c) 2006 Stephen Apostolopoulos
* See license.txt for license info
*/
#endregion
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
namespace OpenTK.Frameworks
{
2006-11-02 22:40:36 +01:00
internal abstract class FrameworkImplementation
{
2006-11-02 22:40:36 +01:00
public abstract void OnHandleCreated(object sender, EventArgs args);
public abstract bool IsIdle();
public abstract void Setup();
//abstract public void CloseWindow();
public abstract void SetResolution(int width, int height, OpenTK.OpenGL.ColorDepth color, bool fullscreen);
}
2006-11-02 22:40:36 +01:00
}