mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-09 16:45:37 +00:00
13 lines
262 B
C#
13 lines
262 B
C#
namespace GtkSource
|
|
{
|
|
using System;
|
|
public partial class Buffer : Gtk.TextBuffer
|
|
{
|
|
public Buffer() : base(IntPtr.Zero)
|
|
{
|
|
owned = true;
|
|
Raw = gtk_source_buffer_new(IntPtr.Zero);
|
|
}
|
|
}
|
|
}
|