mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 16:15:35 +00:00
5b63473a1c
It's not the same type as GLib.Object but a subclass thereof.
12 lines
235 B
C#
12 lines
235 B
C#
namespace GtkSource
|
|
{
|
|
using System;
|
|
public partial class Buffer : Gtk.TextBuffer
|
|
{
|
|
public Buffer() : base(IntPtr.Zero)
|
|
{
|
|
Raw = gtk_source_buffer_new(IntPtr.Zero);
|
|
}
|
|
}
|
|
}
|