Skip to content

Commit

Permalink
Small refactor.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Pane committed Oct 26, 2020
1 parent b65c745 commit 4743f48
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Editor/GraphyEditorStyle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 4743f48

Please sign in to comment.