Ryujinx-GtkSharp/Source/Libs/GtkSourceSharp/GtkSourceSharp.cs

13 lines
243 B
C#
Raw Normal View History

namespace GtkSource
{
public partial class SourceView : Gtk.TextView
{
new public GtkSource.Buffer Buffer
{
get => base.Buffer as GtkSource.Buffer;
set => base.Buffer = value;
}
}
}