Ryujinx-GtkSharp/Source/Libs/SourceView/GtkSourceBuffer.cs

13 lines
281 B
C#
Raw Normal View History

namespace Gtk.Source
2020-07-02 07:09:23 +02:00
{
using System;
public partial class GtkSourceBuffer : Gtk.TextBuffer
{
public GtkSourceBuffer() : base(IntPtr.Zero)
{
owned = true;
Raw = gtk_source_buffer_new(IntPtr.Zero);
}
}
}