12 lines
219 B
C#
12 lines
219 B
C#
|
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace FLResources
|
|||
|
{
|
|||
|
public interface IResources
|
|||
|
{
|
|||
|
Dictionary<string, int> LoadIds(int ids);
|
|||
|
StatusHandle GetData(string nameResources, int id);
|
|||
|
}
|
|||
|
}
|