From 4743f48555a20a9dadffb63c058921d6a6ce72dc Mon Sep 17 00:00:00 2001 From: Martin Pane Date: Mon, 26 Oct 2020 21:36:30 +0100 Subject: [PATCH] Small refactor. --- Editor/GraphyEditorStyle.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Editor/GraphyEditorStyle.cs b/Editor/GraphyEditorStyle.cs index 039f671..61d9295 100644 --- a/Editor/GraphyEditorStyle.cs +++ b/Editor/GraphyEditorStyle.cs @@ -34,12 +34,12 @@ internal static class GraphyEditorStyle #region Properties -> Public - public static Texture2D ManagerLogoTexture { get { return _managerLogoTexture; } } - public static Texture2D DebuggerLogoTexture { get { return _debuggerLogoTexture; } } - public static GUISkin Skin { get { return m_skin; } } - public static GUIStyle HeaderStyle1 { get { return m_headerStyle1; } } - public static GUIStyle HeaderStyle2 { get { return m_headerStyle2; } } - public static GUIStyle FoldoutStyle { get { return m_foldoutStyle; } } + public static Texture2D ManagerLogoTexture => _managerLogoTexture; + public static Texture2D DebuggerLogoTexture => _debuggerLogoTexture; + public static GUISkin Skin => m_skin; + public static GUIStyle HeaderStyle1 => m_headerStyle1; + public static GUIStyle HeaderStyle2 => m_headerStyle2; + public static GUIStyle FoldoutStyle => m_foldoutStyle; #endregion