FLResourceLibrary/FLData/ResourceData.cs
Dvurechensky 6e2bfe062d 1.0.1
2025-05-13 15:25:37 +03:00

33 lines
821 B
C#

/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 13 мая 2025 15:25:18
* Version: 1.0.1
*/
using System.Collections.Generic;
namespace FLData
{
public class ResourceData
{
public static List<string> NamesResorces = new List<string>()
{
"Resources_name.resx",
"OfferBribeResources_name.resx",
"NameResources_name.resx",
"EquipResources_name.resx",
"SBM3_name.resx",
"SBM2_name.resx",
"SBM_name.resx",
"SBM_info.resx",
"EquipResources_info.resx",
"MiscTextInfo2_info.resx",
"InfoCards_info.resx",
"MiscText_info.resx",
"SBM3_info.resx"
};
}
}