2007-09-09 18:07:39 +02:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2007-09-09 17:10:21 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Platform
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provides methods to
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IMutableWindowInfo : IWindowInfo
|
|
|
|
|
{
|
|
|
|
|
void CopyInfoFrom(IWindowInfo info);
|
|
|
|
|
}
|
|
|
|
|
}
|