Firstborn/Assets/RPG Creation Kit/GeneralIcons/EditorIconsPath.cs
Schaken-Mods ca9718144f Update 4/24/23
Fixed the extra hair, Overhauled the Environment Manager, Removed Save Bloat, Added Loading Screen before Character Menu.
2023-04-24 17:54:43 -05:00

40 lines
2.7 KiB
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RPGCreationKit;
namespace RPGCreationKit
{
/// <summary>
/// Contains the Paths of all the Icons used by the Editor Windows of the Quests Creation Kit
/// </summary>
public static class EditorIconsPath
{
public static readonly string NoIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/NoItemIcon.png";
public static readonly string AmmoItemWindowIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/AmmoItem.WindowIcon.png";
public static readonly string ArmorItemWindowIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/ArmorItem.WindowIcon.png";
public static readonly string BookItemWindowIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/BookItem.WindowIcon.png";
public static readonly string ConsumableItemWindowIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/ConsumableItem.WindowIcon.png";
public static readonly string KeyItemWindowIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/KeyItem.WindowIcon.png";
public static readonly string MiscItemWindowIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/MiscItem.WindowIcon.png";
public static readonly string WeaponItemWindowIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/WeaponItem.WindowIcon.png";
public static readonly string SoundsOfItemWindowIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/Sound.WindowIcon.png";
public static readonly string QuestWindowIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/Quest.WindowIcon.png";
public static readonly string CellViewWindowIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/CellView.WindowIcon.png";
public static readonly string RPGCKEditorWindowIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/RPGCKEditor.WindowIcon.png";
public static readonly string RefreshButton = "Assets/RPG Creation Kit/GeneralIcons/Icons/RefreshIcon.png";
public static readonly string WorldLoaderIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/WorldLoaderIcon.png";
public static readonly string RaceEditorIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/RaceEditorIcon.png";
public static readonly string CreatureAIEditorIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/CreatureAIEditorIcon.png";
public static readonly string FactionEditorIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/FactionEditorIcon.png";
public static readonly string MainMenuIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/MainMenuEditorIcon.png";
public static readonly string ActorLoaderIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/ActorEditorIcon.png";
public static Sprite NO_ITEM_ICON;
}
}