aboutsummaryrefslogtreecommitdiff
path: root/src/Blank.cs
blob: 10190891d83b2f677324ac96cc98b894415a9f44 (plain)
1
2
3
4
5
6
using Gtk;
class Blank : Box {
    public Blank(int width, int height) : base(Orientation.Horizontal, 0) {
        SetSizeRequest(width, height);
    }
}