mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 19:15:27 +00:00
16 lines
241 B
C#
16 lines
241 B
C#
|
// IWrapper.cs - Common code for GInterfaces and GObjects
|
||
|
//
|
||
|
// Author: Rachel Hestilow <hesitlow@ximian.com>
|
||
|
//
|
||
|
// (c) 2002 Rachel Hestilow
|
||
|
|
||
|
namespace GLib
|
||
|
{
|
||
|
using System;
|
||
|
|
||
|
public interface IWrapper
|
||
|
{
|
||
|
IntPtr Handle { get; set; }
|
||
|
}
|
||
|
}
|