aboutsummaryrefslogtreecommitdiff
path: root/src/Blank.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Blank.cs')
-rw-r--r--src/Blank.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Blank.cs b/src/Blank.cs
new file mode 100644
index 0000000..1019089
--- /dev/null
+++ b/src/Blank.cs
@@ -0,0 +1,6 @@
+using Gtk;
+class Blank : Box {
+ public Blank(int width, int height) : base(Orientation.Horizontal, 0) {
+ SetSizeRequest(width, height);
+ }
+} \ No newline at end of file