From 072cc4ee5de77c7f8b7d7642cdfc7bbf75280b85 Mon Sep 17 00:00:00 2001 From: Nathan Alo Date: Fri, 14 Jul 2023 21:31:55 +0800 Subject: [PATCH] add `Window` node --- source/Vignette/Window.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 source/Vignette/Window.cs diff --git a/source/Vignette/Window.cs b/source/Vignette/Window.cs new file mode 100644 index 0000000..233cc9e --- /dev/null +++ b/source/Vignette/Window.cs @@ -0,0 +1,14 @@ +// Copyright (c) Cosyne +// Licensed under GPL 3.0 with SDK Exception. See LICENSE for details. + +namespace Vignette; + +/// +/// The root of . +/// +public sealed class Window : World +{ + internal Window() + { + } +}