From 121115b1082aaeb36368758440e3d2365d4cdade Mon Sep 17 00:00:00 2001 From: "H. Utku Maden" Date: Tue, 8 Sep 2026 21:33:03 +0300 Subject: [PATCH] Add Extents.None. --- Dashboard.Common/Extents.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dashboard.Common/Extents.cs b/Dashboard.Common/Extents.cs index 8e7e15c..dd49f79 100644 --- a/Dashboard.Common/Extents.cs +++ b/Dashboard.Common/Extents.cs @@ -25,5 +25,7 @@ namespace Dashboard public Extents(float value) : this(new Vector4(value)) { } + + public static readonly Extents None = new Extents(0); } } \ No newline at end of file