mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-05 14:15:57 +00:00
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|