Marked as obsolete.
This commit is contained in:
parent
6ff0ed17c4
commit
b4d35e7d03
1 changed files with 4 additions and 1 deletions
|
@ -10,6 +10,7 @@ using System.Text;
|
|||
|
||||
namespace OpenTK.Platform
|
||||
{
|
||||
[Obsolete]
|
||||
public interface IResizable
|
||||
{
|
||||
int Height { get; set; }
|
||||
|
@ -23,8 +24,10 @@ namespace OpenTK.Platform
|
|||
event ResizeEvent Resize;
|
||||
}
|
||||
|
||||
[Obsolete]
|
||||
public delegate void ResizeEvent(object sender, ResizeEventArgs e);
|
||||
|
||||
|
||||
[Obsolete]
|
||||
public class ResizeEventArgs : EventArgs
|
||||
{
|
||||
public int Width, Height;
|
||||
|
|
Loading…
Reference in a new issue