Ryujinx-GtkSharp/Source/Libs/SourceView/GtkSourceBuffer.cs
2020-07-07 09:43:47 +10:00

13 lines
281 B
C#

namespace Gtk.Source
{
using System;
public partial class GtkSourceBuffer : Gtk.TextBuffer
{
public GtkSourceBuffer() : base(IntPtr.Zero)
{
owned = true;
Raw = gtk_source_buffer_new(IntPtr.Zero);
}
}
}