1
0
Fork 0
mirror of https://github.com/Ryujinx/GtkSharp.git synced 2025-03-06 08:29:38 +00:00
GtkSharp/Source/Libs/GtkSourceSharp/Buffer.cs

12 lines
235 B
C#
Raw Normal View History

namespace GtkSource
{
using System;
public partial class Buffer : Gtk.TextBuffer
{
public Buffer() : base(IntPtr.Zero)
{
Raw = gtk_source_buffer_new(IntPtr.Zero);
}
}
}