2018-11-22 14:30:37 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace OpenDiablo2.Common
|
|
|
|
|
{
|
|
|
|
|
public static class ResourcePaths
|
|
|
|
|
{
|
|
|
|
|
// --- Loading Screen ---
|
|
|
|
|
public static string LoadingScreen = "data\\global\\ui\\Loading\\loadingscreen.dc6";
|
|
|
|
|
|
|
|
|
|
// --- Main Menu ---
|
|
|
|
|
public static string GameSelectScreen = "data\\global\\ui\\FrontEnd\\gameselectscreenEXP.dc6";
|
|
|
|
|
public static string Diablo2LogoFireLeft = "data\\global\\ui\\FrontEnd\\D2logoFireLeft.DC6";
|
|
|
|
|
public static string Diablo2LogoFireRight = "data\\global\\ui\\FrontEnd\\D2logoFireRight.DC6";
|
|
|
|
|
public static string Diablo2LogoBlackLeft = "data\\global\\ui\\FrontEnd\\D2logoBlackLeft.DC6";
|
|
|
|
|
public static string Diablo2LogoBlackRight = "data\\global\\ui\\FrontEnd\\D2logoBlackRight.DC6";
|
|
|
|
|
|
2018-11-22 20:23:00 -05:00
|
|
|
|
// --- Character Select Screen ---
|
|
|
|
|
public static string CharacterSelectBackground = "data\\global\\ui\\FrontEnd\\charactercreationscreenEXP.dc6";
|
|
|
|
|
public static string CharacterSelectCampfire = "data\\global\\ui\\FrontEnd\\fire.DC6";
|
|
|
|
|
|
2018-11-22 14:30:37 -05:00
|
|
|
|
// --- Mouse Pointers ---
|
|
|
|
|
public static string CursorDefault = "data\\global\\ui\\CURSOR\\ohand.DC6";
|
2018-11-22 16:22:39 -05:00
|
|
|
|
|
|
|
|
|
// --- Fonts ---
|
2018-11-22 18:06:15 -05:00
|
|
|
|
public static string Font6 = "data\\local\\font\\latin\\font6";
|
2018-11-22 16:22:39 -05:00
|
|
|
|
public static string Font8 = "data\\local\\font\\latin\\font8";
|
|
|
|
|
public static string Font16 = "data\\local\\font\\latin\\font16";
|
2018-11-22 17:00:22 -05:00
|
|
|
|
public static string Font24 = "data\\local\\font\\latin\\font24";
|
2018-11-22 18:06:15 -05:00
|
|
|
|
public static string Font30 = "data\\local\\font\\latin\\font30";
|
2018-11-22 16:22:39 -05:00
|
|
|
|
public static string FontFormal12 = "data\\local\\font\\latin\\fontformal12";
|
2018-11-22 18:06:15 -05:00
|
|
|
|
public static string FontFormal11 = "data\\local\\font\\latin\\fontformal11";
|
2018-11-22 16:22:39 -05:00
|
|
|
|
public static string FontFormal10 = "data\\local\\font\\latin\\fontformal10";
|
2018-11-22 18:06:15 -05:00
|
|
|
|
public static string FontExocet10 = "data\\local\\font\\latin\\fontexocet10";
|
|
|
|
|
public static string FontExocet8 = "data\\local\\font\\latin\\fontexocet8";
|
|
|
|
|
|
2018-11-22 16:22:39 -05:00
|
|
|
|
|
2018-11-22 17:00:22 -05:00
|
|
|
|
// --- UI ---
|
|
|
|
|
public static string WideButtonBlank = "data\\global\\ui\\FrontEnd\\WideButtonBlank.dc6";
|
|
|
|
|
|
2018-11-22 14:30:37 -05:00
|
|
|
|
}
|
|
|
|
|
}
|