FLResourceLibrary/FLData/ResourceData.cs
Dvurechensky 3b92bf134f 1.0.0
2025-05-13 15:23:06 +03:00

25 lines
646 B
C#

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"
};
}
}