/* * 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 FLResources { public interface IResources { Dictionary LoadIds(int ids); StatusHandle GetData(string nameResources, int id); } }