aboutsummaryrefslogtreecommitdiff
path: root/src/Blank.cs
diff options
context:
space:
mode:
authorame <[email protected]>2024-07-06 00:35:24 -0500
committerame <[email protected]>2024-07-06 00:35:24 -0500
commitcc3768e1509c22fa52ec7bf895390407a0ce0435 (patch)
tree70489029d0ae183aff3de32dbeb87118635a6a34 /src/Blank.cs
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