Ryujinx-GtkSharp/gtk/Object.cs
Bob Smith 33533985d0 Totally reworked the signal system. Should be much more flexable.
svn path=/trunk/gtk-sharp/; revision=919
2001-09-21 14:03:17 +00:00

17 lines
290 B
C#
Executable File

// Object.cs - GtkObject class wrapper implementation
//
// Author: Mike Kestner <mkestner@speakeasy.net>
//
// (c) 2001 Mike Kestner
namespace Gtk {
using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
public abstract class Object : GLib.Object {
}
}