48 lines
2.5 KiB
C#
48 lines
2.5 KiB
C#
//$ Copyright 2015-22, Code Respawn Technologies Pvt Ltd - All Rights Reserved $//
|
|
namespace DungeonArchitect.UI
|
|
{
|
|
/// <summary>
|
|
/// The resource filename constants used by dungeon architect editor
|
|
/// </summary>
|
|
public class UIResourceLookup
|
|
{
|
|
public static readonly string TEXTURE_GO_NODE_SELECTION = "graph_node_go_selection";
|
|
public static readonly string TEXTURE_GO_NODE_FRAME = "graph_node_go_frame";
|
|
public static readonly string TEXTURE_GO_NODE_BG = "graph_node_go_bg";
|
|
public static readonly string TEXTURE_PIN_GLOW = "graph_pin_glow";
|
|
public static readonly string TEXTURE_MULTI_GO_NODE_FRAME = "graph_node_multi_go_frame";
|
|
|
|
public static readonly string TEXTURE_MARKER_NODE_SELECTION = "graph_node_marker_selection";
|
|
public static readonly string TEXTURE_MARKER_NODE_FRAME = "graph_node_marker_frame";
|
|
public static readonly string TEXTURE_MARKER_EMITTER_NODE_FRAME = "graph_node_marker_emitter_frame";
|
|
public static readonly string TEXTURE_MARKER_NODE_BG = "graph_node_marker_bg";
|
|
|
|
public static readonly string TEXTURE_CURSOR_RING = "sc_cursor_circle";
|
|
public static readonly string TEXTURE_CURSOR_RING_SOLID = "sc_cursor_circle_solid";
|
|
|
|
public static readonly string TEXTURE_REFRESH_16 = "refresh_16";
|
|
|
|
public static readonly string GUI_STYLE_BANNER = "DABannerStyle";
|
|
|
|
public static readonly string ICON_CLOSE_16x = "icon_close_16x";
|
|
public static readonly string ICON_PLUS_16x = "icon_plus_16x";
|
|
public static readonly string ICON_MOVEUP_16x = "icon_up_16x";
|
|
public static readonly string ICON_MOVEDOWN_16x = "icon_down_16x";
|
|
public static readonly string ICON_ZOOMFIT_16x = "icon_fit_16x";
|
|
|
|
public static readonly string ICON_ERROR_16x = "icon_error_16x";
|
|
public static readonly string ICON_WARNING_16x = "icon_warning_16x";
|
|
public static readonly string ICON_INFO_16x = "icon_info_16x";
|
|
public static readonly string ICON_SUCCESS_16x = "icon_success_16x";
|
|
public static readonly string ICON_WHITE_16x = "icon_white_16";
|
|
public static readonly string ICON_PLAY_16x = "icon_play_16x";
|
|
public static readonly string ICON_PLAY_16xb = "icon_play_16xb";
|
|
public static readonly string ICON_SETTINGS_16x = "icon_settings_16x";
|
|
public static readonly string ICON_DISCORD_16x = "icon_discord_16x";
|
|
public static readonly string ICON_DOCS_16x = "icon_docs_16x";
|
|
|
|
|
|
public static readonly string SKIN_TOOLBAR_BUTTONS = "ToolbarButtons";
|
|
}
|
|
}
|