From 19fb969718ccfb0aa4af9ad03a645010c8a2f996 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20L=C3=BCbe=C3=9F?= Date: Mon, 1 Jan 2024 13:02:34 +0100 Subject: [PATCH] ScriptCore: Added custom debug display for UUID --- ScriptCore/Core/UUID.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ScriptCore/Core/UUID.cs b/ScriptCore/Core/UUID.cs index 850c2e5..d3e4dab 100644 --- a/ScriptCore/Core/UUID.cs +++ b/ScriptCore/Core/UUID.cs @@ -1,8 +1,11 @@ +using System.Diagnostics; + namespace GlitchyEngine.Core; /// /// Represents a universally unique identifier (UUID). /// +[DebuggerDisplay("{ToString()}")] public struct UUID { private ulong _uuid;